有没有任何方法可以自动加载webpack外部文件?

时间:2015-11-17 13:12:45

标签: javascript webpack commonjs externals

我使用像var $ = require('jquery');之类的commonj组织我的前端项目,并使用webpack捆绑条目js文件。我可以使用webpack的“externals”将一些第三方库(如jquery,angular或其他)排除到最终的bundle中,我必须在html中添加一些脚本标签来加载这些文件。是否有任何方法可以自动加载这些外部文件,而不是在html文件中手动添加脚本标签?

1 个答案:

答案 0 :(得分:1)

Webpack是一个模块 bundler 而不是javascript加载器。它从本地磁盘打包文件,不从Web加载文件(除了自己的块)。

使用javascript加载器,i。即script.js

select t1.ID, t2.ID, t1.Created, t2.Created, count(*) as ccount 
  from table t1 
  join table t2 
    on t2.ID <> t1.ID 
   and t2.Created > t1.Created  
   and DateDiff(minute, t2.Created, t1.Created) <= 2   
 group by t1.ID, t2.ID, t1.Created, t2.Created
having count(*) >= 5
  

有关详细信息,请参阅Webpack repo:https://github.com/webpack/webpack/issues/150

上的此问题