Files
revsuit/frontend/vue.config.js
T
Li4n0 223c14ab33 feat: add value field to the dns log (#67)
record resolve value of dns log to facilitate the observation of dns rebinding.
2023-05-23 23:27:50 +08:00

22 lines
430 B
JavaScript

// vue.config.js
const path = require('path');
// eslint-disable-next-line no-unused-vars
function resolve(dir) {
return path.join(__dirname, dir)
}
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://127.0.0.1:10000/revsuit/',
}
},
},
productionSourceMap: false,
runtimeCompiler: true,
filenameHashing: false,
publicPath: '',
}