This commit is contained in:
johny
2026-01-29 00:04:52 +01:00
commit edac3b3836
24 changed files with 1819 additions and 0 deletions

9
vite.config.js Normal file
View File

@@ -0,0 +1,9 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue2'
export default defineConfig({
plugins: [vue()],
server: {
hmr: true,
}
})