1234567891011121314151617181920212223242526272829 |
- module.exports = {
- publicPath: '/www',
- productionSourceMap: false,
- devServer: {
- port: 18080,
- proxy: {
- '/api/': {
- target: 'http://skl.cc-lotus.info'
- // target: 'http://127.0.0.1:18090'
- },
- '/upload/': {
- // target: 'http://127.0.0.1:9002'
- target: 'http://skl.cc-lotus.info'
- },
- '/ewebeditor/': {
- // target: 'http://127.0.0.1:9002'
- target: 'http://skl.cc-lotus.info'
- }
- }
- },
- configureWebpack: {
- resolve: {
- alias: {
- '@components': '/src/components',
- '@lib': '/lib'
- }
- }
- }
- };
|