73 lines
1.4 KiB
JavaScript
73 lines
1.4 KiB
JavaScript
|
const HtmlWebpackPlugin = require('html-webpack-plugin')
|
||
|
const webpack = require('webpack')
|
||
|
const path = require('path')
|
||
|
|
||
|
module.exports = {
|
||
|
entry: {
|
||
|
app: './src/index.js',
|
||
|
},
|
||
|
output: {
|
||
|
path: path.resolve(__dirname, 'dist'),
|
||
|
filename: '[name].bundle.js',
|
||
|
clean: true
|
||
|
},
|
||
|
externals: {
|
||
|
url: 'url',
|
||
|
},
|
||
|
devtool: 'source-map',
|
||
|
optimization: {
|
||
|
runtimeChunk: {
|
||
|
name: 'runtime',
|
||
|
},
|
||
|
splitChunks: {
|
||
|
chunks: 'async',
|
||
|
minSize: 20000,
|
||
|
minRemainingSize: 0,
|
||
|
minChunks: 1,
|
||
|
maxAsyncRequests: 30,
|
||
|
maxInitialRequests: 30,
|
||
|
enforceSizeThreshold: 50000,
|
||
|
cacheGroups: {
|
||
|
defaultVendors: {
|
||
|
test: /[\\/]node_modules[\\/]/,
|
||
|
priority: -10,
|
||
|
reuseExistingChunk: true,
|
||
|
},
|
||
|
default: {
|
||
|
minChunks: 2,
|
||
|
priority: -20,
|
||
|
reuseExistingChunk: true,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
devServer: {
|
||
|
hot: true,
|
||
|
open: true,
|
||
|
historyApiFallback: true
|
||
|
},
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.riot$/,
|
||
|
exclude: /node_modules/,
|
||
|
use: [{
|
||
|
loader: '@riotjs/webpack-loader',
|
||
|
options: {
|
||
|
hot: true
|
||
|
}
|
||
|
}]
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
plugins: [
|
||
|
new HtmlWebpackPlugin({
|
||
|
template: 'src/index.html'
|
||
|
}),
|
||
|
new webpack.HotModuleReplacementPlugin(),
|
||
|
],
|
||
|
experiments: {
|
||
|
topLevelAwait: true
|
||
|
}
|
||
|
}
|