70 lines
1.8 KiB
TypeScript
70 lines
1.8 KiB
TypeScript
import type { Configuration } from 'webpack';
|
|
import { NormalizedWebpackExecutorOptions } from '@nrwl/webpack';
|
|
import { ExecutorContext } from 'nx/src/config/misc-interfaces';
|
|
|
|
const processed = new Set();
|
|
|
|
export function withReact() {
|
|
return function configure(
|
|
config: Configuration,
|
|
_ctx?: {
|
|
options: NormalizedWebpackExecutorOptions;
|
|
context: ExecutorContext;
|
|
}
|
|
): Configuration {
|
|
if (processed.has(config)) return config;
|
|
|
|
config.module.rules.push({
|
|
test: /\.svg$/,
|
|
issuer: /\.(js|ts|md)x?$/,
|
|
use: [
|
|
{
|
|
loader: require.resolve('@svgr/webpack'),
|
|
options: {
|
|
svgo: false,
|
|
titleProp: true,
|
|
ref: true,
|
|
},
|
|
},
|
|
{
|
|
loader: require.resolve('file-loader'),
|
|
options: {
|
|
name: '[name].[hash].[ext]',
|
|
},
|
|
},
|
|
],
|
|
});
|
|
|
|
if (config.mode === 'development' && config['devServer']?.hot) {
|
|
// add `react-refresh/babel` to babel loader plugin
|
|
const babelLoader = config.module.rules.find(
|
|
(rule) =>
|
|
typeof rule !== 'string' &&
|
|
rule.loader?.toString().includes('babel-loader')
|
|
);
|
|
if (babelLoader && typeof babelLoader !== 'string') {
|
|
babelLoader.options['plugins'] = [
|
|
...(babelLoader.options['plugins'] || []),
|
|
[
|
|
require.resolve('react-refresh/babel'),
|
|
{
|
|
skipEnvCheck: true,
|
|
},
|
|
],
|
|
];
|
|
}
|
|
const ReactRefreshPlugin = require('@pmmmwh/react-refresh-webpack-plugin');
|
|
config.plugins.push(new ReactRefreshPlugin());
|
|
}
|
|
|
|
// enable webpack node api
|
|
config.node = {
|
|
__dirname: true,
|
|
__filename: true,
|
|
};
|
|
|
|
processed.add(config);
|
|
return config;
|
|
};
|
|
}
|