जैसा कि मैं 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
, तो वेबपैक index.jsx
मॉड्यूल को ढूंढने में नहीं कहेगा App
, लेकिन अगर मैंने मॉड्यूल ऐप को नाम दिया है App.js
, तो यह इस मॉड्यूल को ढूंढ लेगा और अच्छी तरह से काम करेगा।
तो, मैं इसके बारे में भ्रमित हूँ। मेरे में webpack.config.js
, मैंने test: /\.jsx?$/
फ़ाइल की जाँच करने के लिए लिखा है, लेकिन नाम क्यों *.jsx
नहीं मिला?
rule
जो नीचे सूचीबद्ध थेmodule
...{ module: { rules: [ { test: /\.jsx?$/, resolve: { extensions: [".js", ".jsx"] }, include: ... } ] }