1234567891011121314151617181920212223 |
- module.exports = {
- lintOnSave: false,
- productionSourceMap: false,
- devServer: {
- port: 4000,
- proxy: {
- '/api': {
- target: 'http://testapi.mige.tv',
- changeOrigin: true,
- pathRewrite: {
- '^/api': '/'
- }
- },
- '/foo': {
- target: 'http://csapi.mige.tv:809/TestorderFlow',
- changeOrigin: true,
- pathRewrite: {
- '^/foo': '/'
- }
- },
- }
- }
- }
|