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