当我像这样写 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
moduleApp
import React from 'react';
import { render } from 'react-dom';
import App from './containers/App';
let rootElement = document.getElementById('box')
render(
<App />,
rootElement
)
我发现如果我将 module app in 命名为 in App.jsx
,那么 webpack 会说 in index.jsx
can't find module App
,但是如果我将 named module app in 命名为App.js
,它会找到这个module并且运行良好。
所以,我对此感到困惑。在我的 . 中webpack.config.js
,我已test: /\.jsx?$/
写入检查文件,但为什么*.jsx
找不到命名的文件?