module.exports = {
	devServer:{
		port: '8090',
		disableHostCheck:true,
		proxy:{
			'/api':{
				target: 'http://parking.hw.hongweisoft.com/pudprod-api/',
				changeOrigin: true,
				pathRewrite:{
					'^/api': ''
				}
			}
		}
	}
}