vue.config.js 490 B

1234567891011121314151617181920
  1. module.exports = {
  2. publicPath: "./",
  3. assetsDir: "static",
  4. outputDir: 'dist',
  5. /* configureWebpack: {
  6. devServer: {
  7. proxy: {
  8. '/api': {
  9. target: 'http://tp.llzlovesh.top',
  10. changeOrigin: true, //是否跨域
  11. // pathRewrite: {
  12. // '^/api': '' //规定请求地址以什么作为开头
  13. // }
  14. }
  15. }
  16. }
  17. } */
  18. }