Add Docker support and update project dependencies; refactor components to use async imports

This commit is contained in:
2025-07-28 18:43:03 -04:00
parent 26f44fd4ab
commit c049df9a9f
17 changed files with 2550 additions and 2847 deletions

View File

@@ -1,7 +1,8 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import tailwindcss from '@tailwindcss/vite'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
plugins: [vue(), tailwindcss()],
})