chore: set frontend to a blank state

This commit is contained in:
2026-05-14 21:41:34 +02:00
parent f37e85a459
commit 543fbf575d
10 changed files with 546 additions and 555 deletions

View File

@@ -1,7 +1,13 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import * as path from 'path';
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
})
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
});