refactor(ui): Improve dev environment (#1429)

This commit is contained in:
PythonGermany
2025-12-10 22:29:46 +01:00
committed by GitHub
parent b0629773e5
commit a55eb7da40
6 changed files with 25 additions and 18 deletions

View File

@@ -6,5 +6,19 @@ module.exports = {
filenameHashing: false,
productionSourceMap: false,
outputDir: '../static',
publicPath: '/'
}
publicPath: '/',
devServer: {
port: 8081,
https: false,
client: {
webSocketURL:'auto://0.0.0.0/ws'
},
proxy: {
'^/api|^/css|^/oicd': {
target: "http://localhost:8080",
changeOrigin: true,
secure: false,
}
}
}
}