最佳答案
像这样编写 webpack.config.js
module.exports = {
entry: './index.jsx',
output: {
filename: 'bundle.js'
},
module: {
loaders: [{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel',
query: {
presets: ['es2015', 'react']
}
}]
}
};
在 index.jsx
中,我导入一个 react
模块 App
import React from 'react';
import { render } from 'react-dom';
import App from './containers/App';
let rootElement = document.getElementById('box')
render(
<App />,
rootElement
)
我发现如果我在 App.jsx
中命名模块应用程序,那么 webpack 会说在 index.jsx
中找不到模块 App
,但是如果我在 App.js
中命名模块应用程序,它会找到这个模块并且工作得很好。
所以我很困惑。在我的 webpack.config.js
中,我写了 test: /\.jsx?$/
来检查文件,但是为什么找不到命名为 *.jsx
的文件呢?