我正在尝试使用webpack,angular和gulp创建项目。 Webpack从模板创建一个名为build.js的bundle文件和一个index.html。当浏览器进入网页时,我希望它使用ui-route直接进入登录屏幕。
this is how my directory structure looks like.
首先我的问题是捆绑包只包含条目文件app.module.js。我可以要求app.module.js中的其他js文件将它们放在bundle中,但是当这个项目增长时,它将在一个文件中需要很多文件。那么除了node_modules文件夹中的一次之外,是否可以捆绑所有js文件?
我的下一个问题是,当在dist / build文件夹中创建build.js和index.html时,如果它们不在构建文件夹中,我似乎无法找到项目中的其余html文件。< / p>
答案 0 :(得分:0)
Not sure how your webpack config looks like, but many times the HTML is processed by webpack and might end up in your JS bundle (as a string) that then can be used by Angular.