This commit is contained in:
Johnny322
2026-02-08 11:36:29 +01:00
commit 2c6cfd934b
22 changed files with 2565 additions and 0 deletions

10
vite.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
assetsInclude: ['**/*.mp3'],
server: {
port: 5173
}
})