vue.config.js 410 B

12345678910111213141516
  1. module.exports = {
  2. publicPath: process.env.NODE_ENV === 'production' ? './' : '/',
  3. outputDir: 'sacrifice',
  4. productionSourceMap:false,
  5. devServer: {
  6. 'proxy': {
  7. '/api': {
  8. target: 'http://logic.test.xsbanruo.com',
  9. changeOrigin: true,
  10. pathRewrite: {
  11. '^/api': ''
  12. }
  13. }
  14. }
  15. }
  16. }