Velocity:jQuery或Velocity的jQuery shim必须首先加载webpack

时间:2016-10-09 13:29:35

标签: webpack velocity

我正在使用一个项目使用velocity.js实现webpack, 当我运行该项目时,它返回了一个错误 Velocity: Either jQuery or Velocity's jQuery shim must first be loaded

1 个答案:

答案 0 :(得分:0)

要在所有模块中使用jQuery,请使用ProvidePlugin

var webpack = require("webpack");

module.exports = {
    plugins: [
        new webpack.ProvidePlugin({
            $: "jquery",
            jQuery: "jquery",
            "window.jQuery": "jquery"
        })
    ]
};

有关详细信息,请参阅Check this JS fiddle