module.exports = { publicPath: '/www', productionSourceMap: false, devServer: { port: 18080, proxy: { '/api/': { // target: 'http://192.168.0.45:18090' target: 'http://127.0.0.1:18090' }, '/upload/': { target: 'http://127.0.0.1:9002' // target: 'http://192.168.0.45:18090' } } }, configureWebpack: { resolve: { alias: { '@components': '/src/components', '@lib': '/lib' } } } };