F:\node.js\5-3\5-4>webpackInvalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema.?- configuration.module has an unknown property 'loaders'. These properties are valid:? ?object { exprContextCritical?, exprContextRecursive?, exprContextRegExp?, exprContextRequest?, noParse?, rules?, defaultRules?,?unknownContextCritical?, unknownContextRecursive?, unknownContextRegExp?, unknownContextRequest?, unsafeCache?, wrappedContextCritical?, wrappedContextRecursive?, wrappedContextRegExp?, strictExportPresence?, strictThisContextOnImports? }? ?-> Options affecting the normal modules (`NormalModuleFactory`).var webpack = require('webpack');var path = require('path');module.exports ={? ? context: __dirname + '/src',? ? entry:"./js/index.js",? ? module: {? ? ? ? loaders:[{? ? ? ? ? ? test:/\.js?$/,? ? ? ? ? ? exclude:/(node_modules)/,? ? ? ? ? ? loader: "babel-loader",? ? ? ? ? ? query: {? ? ? ? ? ? ? ? presets:['react','es2015']? ? ? ? ? ? }? ? ? ? }]? ? },? ? output: {? ? ? ? path: __dirname + "/src/",? ? ? ? filename: "bundle.js",? ? }};
1 回答

ThomasKwok
TA貢獻(xiàn)1條經(jīng)驗(yàn) 獲得超4個(gè)贊
把module里的那個(gè)loaders改成rules
module:?{ ?rules:?[ ????????{ ????????test:?/\.scss$/, ????????loader:?('style!css!sass') ????????} ??] },
- 1 回答
- 0 關(guān)注
- 7604 瀏覽
慕課專(zhuān)欄
更多
添加回答
舉報(bào)
0/150
提交
取消