module.exports = {
    devServer: {

        proxy: {
            '/api': {
                target: 'https://appointtest.szjixun.cn',
				 changeOrigin: true,
                pathRewrite: {
                    '^/api': ''
                }
            }
        },
    }
}