我正在使用一个项目使用velocity.js实现webpack,
当我运行该项目时,它返回了一个错误
Velocity: Either jQuery or Velocity's jQuery shim must first be loaded
答案 0 :(得分:0)
要在所有模块中使用jQuery,请使用ProvidePlugin
:
var webpack = require("webpack");
module.exports = {
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
"window.jQuery": "jquery"
})
]
};
有关详细信息,请参阅Check this JS fiddle。