ในขณะที่ฉันเขียน 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
ไม่พบชื่อ
rule
รายการที่ระบุไว้ภายใต้module
...{ module: { rules: [ { test: /\.jsx?$/, resolve: { extensions: [".js", ".jsx"] }, include: ... } ] }