Initial commit
This commit is contained in:
17
frontend/vite.config.js
Normal file
17
frontend/vite.config.js
Normal file
@@ -0,0 +1,17 @@
|
||||
import { defineConfig } from 'vite';
|
||||
import vue from '@vitejs/plugin-vue';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [vue()],
|
||||
resolve: {
|
||||
alias: {
|
||||
'@': '/src'
|
||||
}
|
||||
},
|
||||
server: {
|
||||
port: 5000,
|
||||
watch: {
|
||||
usePolling: true,
|
||||
}
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user