| 1234567891011121314151617181920212223 |
- /* eslint-disable*/
- const nodeExternals = require('webpack-node-externals');
- const { RunScriptWebpackPlugin } = require('run-script-webpack-plugin');
- module.exports = function (options, webpack) {
- return {
- ...options,
- entry: ['webpack/hot/poll?100', options.entry],
- externals: [
- nodeExternals({
- allowlist: ['webpack/hot/poll?100'],
- }),
- ],
- plugins: [
- ...options.plugins,
- new webpack.HotModuleReplacementPlugin(),
- new webpack.WatchIgnorePlugin({
- paths: [/\.js$/, /\.d\.ts$/],
- }),
- new RunScriptWebpackPlugin({ name: options.output.filename }),
- ],
- };
- };
|