Files
wg-portal/frontend/vite.config.mjs
T

38 lines
807 B
JavaScript
Raw Normal View History

2023-08-04 13:34:18 +02:00
import { fileURLToPath, URL } from 'url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
2026-06-09 04:08:41 +10:00
base: './',
2023-08-04 13:34:18 +02:00
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
},
dedupe: ['prismjs']
2023-08-04 13:34:18 +02:00
},
build: {
//
outDir: process.env.DIST_OUT_DIR || '../internal/app/api/core/frontend-dist',
2023-08-04 13:34:18 +02:00
emptyOutDir: true
},
// local dev api (proxy to avoid cors problems)
server: {
port: 5000,
proxy: {
"/api/v0": {
target: "http://localhost:8888",
changeOrigin: true,
secure: false,
withCredentials: true,
headers: {
"x-wg-dev": true,
},
rewrite: (path) => path,
},
},
},
})