12345678910111213141516171819 |
- const baseUrl = '/www'
- module.exports = {
- publicPath: baseUrl,
- productionSourceMap: false,
- devServer: {
- port: 4000,
- proxy: {
- '/api/': {
- target: 'http://localhost:18099'
- // target: 'http://192.168.4.1:7001'
- },
- '/filespath/resource/': {
- target: 'http://jjzh.cc-lotus.info'
- }
- }
- }
- }
|