没有加载webpack入口点js脚本

时间:2016-11-17 08:57:47

标签: webpack

我使用dist创建了webpack。似乎在此文件夹上正确创建了文件(块,源映射,资源)。

我在webpack.config.js文件中设置了三个入口点:

...
entry: {

  'polyfills': './src/polyfills.browser.ts',
  'vendor':    './src/vendor.browser.ts',
  'main':      './src/main.browser.ts'

},
...

所以,在index.html我的内容是:

<html>
...
<body>
    ...
    <script type="text/javascript" src="polyfills.bundle.js"></script>
    <script type="text/javascript" src="vendor.bundle.js"></script>
    <script type="text/javascript" src="main.bundle.js"></script>
</body>
</html>

dist文件夹位于D:\projects\living\user-platform/project/dist

因此,当我在本地加载index.html时:file:///D:/projects/living/user-platform/project/dist/index.html我已经意识到脚本未加载,因为浏览器尝试使用D:\-like路径获取它们:{{1} },D:\polyfills.bundle.js等等。

有什么想法吗?

0 个答案:

没有答案