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
)
에서 module app이라는 이름을 지정하면 App.jsx
webpack은 in't index.jsx
find module 이라고 말하지만에서 App
이름을 지정한 module app이라는 이름을 지정 App.js
하면이 모듈을 찾아 잘 작동합니다.
그래서 나는 그것에 대해 혼란 스럽습니다. 내 webpack.config.js
에서 test: /\.jsx?$/
파일을 확인하기 위해 작성했지만 왜 named *.jsx
를 찾을 수 없습니까?
rule
아래에 나열된의module
...{ module: { rules: [ { test: /\.jsx?$/, resolve: { extensions: [".js", ".jsx"] }, include: ... } ] }