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'
      }
    }
  },
  configureWebpack: {
    resolve: {
      alias: {
        '@components': '/src/components',
        '@lib': '/lib'
      }
    }
  }
};