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