當我運行 '的WebPack' 命令,我得到這個錯誤:的WebPack模塊未發現:錯誤:無法解析 'jQuery的'
ERROR在./js/main.js 模塊沒有發現錯誤: :無法解析 'jQuery的' 中」 ... \ JS' @ ./js/main.js 3:0-16 4:0-23
在的package.json我:
"devDependencies": {
"handlebars": "^4.0.6",
"handlebars-loader": "^1.4.0",
"jquery": "^3.2.1",
"path": "^0.12.7"
},
in webpack.config.js:
var path = require("path");
module.exports = {
entry: "./js/main.js",
output: {
path: __dirname + "/js",
filename: "scripts-bundled.js"
},
resolve: {
modules: [
path.join(__dirname, "js/helpers")
]
},
module: {
loaders: [
{test: /\.hbs$/, loader: "handlebars-loader"}
]
}
};
,並在該文件的頂部main.js,我有:
import $ from 'jquery';
我還使用車把main.js.難道那是句柄或handlebars加載器干擾jQuery?我之前在另一個沒有使用句柄的項目中使用過webpack和jquery,而沒有這個問題,但也許它跟它沒有任何關係。
據我所知,你應該使用JQLITe與webpack使用jquery –