finish restructuring, add eslint config, add more questions to form
This commit is contained in:
@@ -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 }
|
||||
} );
|
||||
|
||||
Reference in New Issue
Block a user