Initial commit

This commit is contained in:
2025-09-06 22:44:10 +02:00
commit fbd73d7345
21 changed files with 1013 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { fileURLToPath, URL } from 'node:url';
import vue from '@vitejs/plugin-vue';
import { defineConfig } from 'vite';
import vueDevTools from 'vite-plugin-vue-devtools';
// https://vite.dev/config/
export default defineConfig({
plugins: [vue(), vueDevTools()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
});