finish restructuring, add eslint config, add more questions to form

This commit is contained in:
2024-10-02 15:45:35 +02:00
parent 734259ae6a
commit d37464a344
11 changed files with 1694 additions and 59 deletions

View File

@@ -1,19 +1,11 @@
import { fileURLToPath, URL } from 'node:url'
import { fileURLToPath, URL } from 'node:url';
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
server: {
port: 8081
}
})
export default defineConfig( {
'plugins': [ vue(), ],
'resolve': { 'alias': { '@': fileURLToPath( new URL( './src', import.meta.url ) ) } },
'server': { 'port': 8081 }
} );