-
-
Notifications
You must be signed in to change notification settings - Fork 515
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
2,496 additions
and
2,558 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
const path = require('path'); | ||
|
||
const HtmlWebpackPlugin = require('html-webpack-plugin'); | ||
const MiniCssExtractPlugin = require('mini-css-extract-plugin'); | ||
const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-plugin'); | ||
|
||
const isProduction = process.env.NODE_ENV === 'production'; | ||
const isDevelopment = !isProduction; | ||
|
||
module.exports = { | ||
mode: isProduction ? 'production' : 'development', | ||
bail: isProduction, | ||
context: path.join(__dirname), | ||
entry: { | ||
src: './index.jsx', | ||
}, | ||
output: { | ||
path: path.resolve(__dirname, 'dist'), | ||
filename: '[name].[chunkhash:8].js', | ||
}, | ||
resolve: { | ||
extensions: ['.js', '.jsx'], | ||
}, | ||
module: { | ||
rules: [ | ||
{ | ||
test: /\.jsx?$/, | ||
exclude: /node_modules/, | ||
use: [ | ||
{ | ||
loader: 'babel-loader', | ||
options: { | ||
babelrcRoots: ['.', '../'], | ||
plugins: [isDevelopment && 'react-refresh/babel'].filter(Boolean), | ||
}, | ||
}, | ||
], | ||
}, | ||
{ | ||
test: /\.less$/, | ||
use: [ | ||
isProduction ? MiniCssExtractPlugin.loader : 'style-loader', | ||
'css-loader', | ||
'less-loader', | ||
], | ||
}, | ||
{ | ||
test: /\.css$/, | ||
use: [ | ||
isProduction ? MiniCssExtractPlugin.loader : 'style-loader', | ||
'css-loader', | ||
], | ||
}, | ||
{ | ||
test: /\.pdf$/, | ||
use: 'url-loader', | ||
}, | ||
].filter(Boolean), | ||
}, | ||
plugins: [ | ||
new HtmlWebpackPlugin({ | ||
template: 'index.html', | ||
}), | ||
isProduction && new MiniCssExtractPlugin({ | ||
filename: '[name].[chunkhash:8].css', | ||
chunkFilename: '[name].[chunkhash:8].css', | ||
}), | ||
isDevelopment && new ReactRefreshWebpackPlugin(), | ||
].filter(Boolean), | ||
optimization: { | ||
moduleIds: 'named', | ||
}, | ||
stats: { | ||
assetsSort: '!size', | ||
entrypoints: false, | ||
}, | ||
devServer: { | ||
compress: true, | ||
historyApiFallback: true, // respond to 404s with index.html | ||
host: 'localhost', | ||
hot: true, // enable HMR on the server | ||
port: 3000, | ||
}, | ||
}; |
Oops, something went wrong.