52 lines
1.2 KiB
JavaScript
52 lines
1.2 KiB
JavaScript
import {fileURLToPath, URL} from 'node:url'
|
|
|
|
import {defineConfig} from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import vueDevTools from 'vite-plugin-vue-devtools'
|
|
import {viteStaticCopy} from 'vite-plugin-static-copy'
|
|
|
|
// https://vite.dev/config/
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue(),
|
|
vueDevTools(),
|
|
viteStaticCopy({
|
|
targets: [
|
|
{
|
|
src: 'assets/flags/*',
|
|
dest: 'assets/flags'
|
|
},
|
|
{
|
|
src: 'assets/map.json',
|
|
dest: 'assets/'
|
|
}
|
|
]
|
|
})
|
|
],
|
|
base: '/',
|
|
build: {
|
|
outDir: 'dist',
|
|
emptyOutDir: true,
|
|
assetsDir: 'assets',
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
|
},
|
|
},
|
|
server: {
|
|
host: true,
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://localhost:8080',
|
|
changeOrigin: true,
|
|
secure: false
|
|
},
|
|
'/help': {
|
|
target: 'http://localhost:8080',
|
|
changeOrigin: true,
|
|
secure: false
|
|
}
|
|
}
|
|
}
|
|
})
|