41 lines
758 B
TypeScript
41 lines
758 B
TypeScript
import { fileURLToPath, URL } from 'node:url'
|
|
|
|
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import vueDevTools from 'vite-plugin-vue-devtools'
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue(),
|
|
vueDevTools(),
|
|
],
|
|
|
|
resolve: {
|
|
alias: {
|
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
|
},
|
|
},
|
|
|
|
server: {
|
|
proxy: {
|
|
'/api': {
|
|
target: 'http://localhost:5266',
|
|
changeOrigin: true
|
|
},
|
|
'/hubs': {
|
|
target: 'http://localhost:5039',
|
|
changeOrigin: true,
|
|
ws: true
|
|
}
|
|
}
|
|
},
|
|
|
|
css: {
|
|
preprocessorOptions: {
|
|
scss: {
|
|
silenceDeprecations: ['import', 'global-builtin', 'color-functions', 'if-function'],
|
|
},
|
|
},
|
|
},
|
|
})
|