在Webpack 4中使用Reactjs开发版本,可以按照以下步骤进行:
module.exports = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js',
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-react'],
},
},
},
],
},
plugins: [
new HtmlWebpackPlugin({
template: './src/index.html',
}),
],
devServer: {
contentBase: path.join(__dirname, 'dist'),
port: 3000,
},
};
const App = () => {
return <h1>Hello, React!</h1>;
};
ReactDOM.render(<App />, document.getElementById('root'));
以上是在Webpack 4中使用Reactjs开发版本的基本步骤。在实际开发中,你还可以根据需要添加其他loader和插件,进行代码分割、优化等操作。
领取专属 10元无门槛券
手把手带您无忧上云