Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
590 views
in Technique[技术] by (71.8m points)

webpack 多页应用 开发时候只运行我正在开发的页面,其他页面不运行 怎么配置?

最近在考虑做多页应用的配置,但是工作的时候遇到了,npm run dev的时候所有index.html,other.html,都被开启了,但是我现在只开发other.html的内容,怎么配置,让devserver只运行other.html相关的内容呢?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

是不是可以考虑配置webpack的entry字段,只编译你正在开发的模块,也就是只保留other.html模块所在的入口文件,其它的都注释掉


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...