vue.config.js 903 B

1234567891011121314151617181920212223
  1. const { defineConfig } = require('@vue/cli-service')
  2. module.exports = defineConfig({
  3. publicPath:'https://www.fyshark.com',
  4. // 设置跨域
  5. crossorigin: 'anonymous',
  6. /**
  7. * 如果你不需要生产环境的 source map,可以将其设置为 false 以加速生产环境构建。
  8. * map文件的作用在于:项目打包后,代码都是经过压缩加密的,如果运行时报错,输出的错误信息无法准确得知是哪里的代码报错。
  9. * 有了map就可以像未加密的代码一样,准确的输出是哪一行哪一列有错。
  10. * */
  11. productionSourceMap: false,
  12. transpileDependencies: ['swiper', 'dom7'],
  13. // 它支持webPack-dev-server的所有选项
  14. devServer: {
  15. host: "0.0.0.0",
  16. port: 8083, // 端口号
  17. https: false, // https:{type:Boolean}
  18. open: true, //配置自动启动浏览器
  19. proxy: '' // 配置跨域处理
  20. },
  21. })