摘要: npm i -D mockjs 根目录新建 mock 文件夹 mock/utils.js const fs = require('fs'); const path = require('path'); module.exports = { getJsonFile:function (filePath 阅读全文
posted @ 2021-05-08 12:10 guangzan 阅读(85) 评论(0) 推荐(1) 编辑
摘要: 开启热更新 config.devServer { + hot: true, } config.plugins [ + new webpack.HotModuleReplacementPlugin(), ] 问题描述 开启热更新后,样式和 js 都无法热更新。 原因分析 项目根目录存在 .browse 阅读全文
posted @ 2021-05-08 11:24 guangzan 阅读(1724) 评论(1) 推荐(1) 编辑