25 lines
654 B
JavaScript
25 lines
654 B
JavaScript
// Note: The fs.Stats deprecation warning is from Vue CLI's webpack dependencies
|
|
// which are not yet compatible with Node.js v23. This is suppressed in the build
|
|
// script. All user dependencies have been updated to their latest versions.
|
|
// Consider migrating to Vite for better Node.js v23+ compatibility.
|
|
module.exports = {
|
|
filenameHashing: false,
|
|
productionSourceMap: false,
|
|
outputDir: '../static',
|
|
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,
|
|
}
|
|
}
|
|
}
|
|
}
|