mirror of
https://github.com/h44z/wg-portal.git
synced 2025-09-15 07:11:15 +00:00
chore: update dependencies (#325)
* Update go version and dependencies Signed-off-by: Dmytro Bondar <git@bonddim.com> * Group dependabot updates Signed-off-by: Dmytro Bondar <git@bonddim.com> * Lock file maintenance Signed-off-by: Dmytro Bondar <git@bonddim.com> * Rename vite.config.js Keep CJS as default, opt-in to ESM if needed More: https://vite.dev/guide/troubleshooting.html#vite-cjs-node-api-deprecated Signed-off-by: Dmytro Bondar <git@bonddim.com> --------- Signed-off-by: Dmytro Bondar <git@bonddim.com>
This commit is contained in:
35
frontend/vite.config.mjs
Normal file
35
frontend/vite.config.mjs
Normal file
@@ -0,0 +1,35 @@
|
||||
import { fileURLToPath, URL } from 'url'
|
||||
|
||||
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))
|
||||
}
|
||||
},
|
||||
build: {
|
||||
//
|
||||
outDir: process.env.DIST_OUT_DIR || '../internal/app/api/core/frontend-dist',
|
||||
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,
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
Reference in New Issue
Block a user