const baseUrl = '/www'

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