我添加“反应热”之后出现了错误。数组加载器。我已经按照本教程进行了操作:https://robots.thoughtbot.com/setting-up-webpack-for-react-and-hot-module-replacement但是,我得到了Error: Cannot define 'query' and multiple loaders in loaders list
。
var WebpackDevServer = require("webpack-dev-server");
var webpack = require('webpack');
var path = require('path');
require("babel-polyfill");
var BUILD_DIR = path.resolve(__dirname, 'build');
var APP_DIR = path.resolve(__dirname, 'src');
module.exports = {
entry: [
'babel-polyfill',
'bootstrap-loader',
'webpack/hot/dev-server',
APP_DIR + '/import.js',
],
output: {
path: BUILD_DIR,
filename: 'bundle.js'
},
module: {
loaders: [{
test: /\.jsx?$/,
loaders: ['react-hot', 'babel'],
exclude: /node_modules/,
query: {
plugins: ['transform-runtime'],
presets: ['es2015', 'stage-0', 'react']
}
}, {
test: /\.css$/,
loader: "style-loader!css-loader"
}, {
test: /\.scss$/,
loaders: ["style", "css", "sass"]
}, {
test: /\.(png|woff|woff2|eot|ttf|svg|jpg|gif)$/,
loader: 'url-loader?limit=100000'
}]
},
plugins: [
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery"
}),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
]
};
答案 0 :(得分:76)
该查询似乎是一种自定义单个加载器行为的替代方法,它比内联指定这些参数更清晰(见下文)。如果存在多个加载器,则Webpack不知道query
配置适用于哪个。
以下内容可以解决您的问题:
module: {
loaders: [{
test: /\.jsx?$/,
exclude: /node_modules/,
loaders: ['react-hot', 'babel?presets[]=es2015,presets[]=stage-0,presets[]=react,plugins[]=transform-runtime']
}
编辑虽然此解决方案适用于Webpack 1,但请参阅适用于更新版本的更清晰解决方案的其他答案。
答案 1 :(得分:16)
我的解决方案:
loaders: [{
test: /\.(js|jsx)$/,
loaders: ['react-hot', 'babel?' + JSON.stringify({
cacheDirectory: true,
plugins: [
'transform-runtime',
'transform-decorators-legacy'
],
presets: ['es2015', 'react', 'stage-0'],
env: {
production: {
presets: ['react-optimize']
}
}
}), 'eslint'],
include: src,
exclude: /node_modules/
}
答案 2 :(得分:10)
在 webpack 2& 3 这可以更加干净地配置。
可以在加载器对象数组中传递加载器。每个loader对象都可以指定一个%timeit df.groupby('company_id').first().loc[df.company_id]
1 loop, best of 3: 26.4 s per loop
对象,其作用类似于特定加载器的webpack 1 options
。
例如,在{strong> webpack 2/3
中同时使用query
和react-hot-loader
配置babel-loader
babel-loader
配置了一些选项
module: {
rules: [{
test: /\.js$/,
exclude: /node_modules/,
use: [{
loader: 'react-hot-loader'
}, {
loader: 'babel-loader',
options: {
babelrc: false,
presets: [
'es2015-native-modules'
'stage-0',
'react'
]
}
}]
}]
}
为了进行比较,使用查询字符串方法, webpack 1 中的配置相同。
module: {
rules: [{
test: /\.js$/,
exclude: /node_modules/,
loaders: [
'react-hot',
'babel-loader?' +
'babelrc=false,' +
'presets[]=es2015,' +
'presets[]=stage-0,' +
'presets[]=react'
]
}]
}
注意链中所有已更改的属性名称。
另请注意,我已将es2015
预设更改为es2015-native-modules
配置中预设的babel-loader
。这与options
的规范无关,只是包括es6模块允许您使用v2中引入的webpack树抖动功能。它可以单独使用它仍然可以工作,但如果没有指出明显的升级,答案会感觉不完整: - )
免责声明:这与我对similar question的回答相同,但这个问题有类似的投票/观点/谷歌排名,所以我也会在这里发布答案。
答案 3 :(得分:1)
webpack 2 。我设法像这样配置:
var webpack = require("webpack");
var path = require("path");
module.exports = {
entry: "./src/index.js",
output: {
path: path.resolve(__dirname, "dist/assets"),
filename: "bundle.js",
publicPath: "/assets/"
},
devServer: {
inline: true,
contentBase: './dist',
port: 3000
},
module: {
loaders: [
{
test: /\.js$/,
exclude: /(node_modules)/,
loader: "babel-loader",
options: {
presets: ['latest', 'react', 'stage-0']
}
}
]
}
};
答案 4 :(得分:0)
这个解决方案对我有用:
module: {
loaders:[
{
test: /\.js$/,
exclude: /(node_modules)/,
loader: 'babel-loader'
}
]
}
和.babelrc中的预设
{
'presets': ['latest', 'react', 'stage-0']
}
答案 5 :(得分:0)
自从我找到自己的解决方案以来,我就遇到了同样的问题。您可以尝试:
如果您已在“ .babelrc”文件中定义了“预设” 那么您无需在“ webpack.config.js”文件中指定它,然后将其删除即可正常运行
如果不这样做, 我建议您转到“ .babelrc”文件并在其中指定预设