摘要: 以 windows 平台为例,管理员权限执行以下命令,安装完即可: $ npm install --global --production windows-build-tools 阅读全文
posted @ 2021-04-06 13:24 文刂刂 阅读(225) 评论(1) 推荐(0)
摘要: 一般情况下是一位webpack打包的时候没有把vue文件成功转换成es6语法; 具体解决步骤:1、查看有没有安装babel-loader,没有npm安装; 2、修改webpack打包规则文件: rules: [{ test: /\.js[x]?$/, exclude: /node_modules/, 阅读全文
posted @ 2020-05-27 17:17 文刂刂 阅读(200) 评论(0) 推荐(0)
摘要: 1 export const Env = { 2 }; 3 export function getEnv(hostName) { 4 if (xxx.test(hostName)) { 5 return '环境' 6 } 7 } 8 9 class Config { 10 constructor(e 阅读全文
posted @ 2020-04-16 20:18 文刂刂 阅读(124) 评论(0) 推荐(0)