@@ -95,6 +95,7 @@ import {
95
95
} from './next-dir-paths'
96
96
import { getRspackCore , getRspackReactRefresh } from '../shared/lib/get-rspack'
97
97
import { RspackProfilingPlugin } from './webpack/plugins/rspack-profiling-plugin'
98
+ import getWebpackBundler from '../shared/lib/get-webpack-bundler'
98
99
99
100
type ExcludesFalse = < T > ( x : T | false ) => x is T
100
101
type ClientEntries = {
@@ -341,6 +342,7 @@ export default async function getBaseWebpackConfig(
341
342
fetchCacheKeyPrefix ?: string
342
343
}
343
344
) : Promise < webpack . Configuration > {
345
+ const bundler = getWebpackBundler ( )
344
346
const isClient = compilerType === COMPILER_NAMES . client
345
347
const isEdgeServer = compilerType === COMPILER_NAMES . edgeServer
346
348
const isNodeServer = compilerType === COMPILER_NAMES . server
@@ -1870,7 +1872,7 @@ export default async function getBaseWebpackConfig(
1870
1872
} ,
1871
1873
plugins : [
1872
1874
isNodeServer &&
1873
- new webpack . NormalModuleReplacementPlugin (
1875
+ new bundler . NormalModuleReplacementPlugin (
1874
1876
/ \. \/ ( .+ ) \. s h a r e d - r u n t i m e $ / ,
1875
1877
function ( resource ) {
1876
1878
const moduleName = path . basename (
@@ -1902,7 +1904,7 @@ export default async function getBaseWebpackConfig(
1902
1904
: new ReactRefreshWebpackPlugin ( webpack ) ) ,
1903
1905
// Makes sure `Buffer` and `process` are polyfilled in client and flight bundles (same behavior as webpack 4)
1904
1906
( isClient || isEdgeServer ) &&
1905
- new webpack . ProvidePlugin ( {
1907
+ new bundler . ProvidePlugin ( {
1906
1908
// Buffer is used by getInlineScriptSource
1907
1909
Buffer : [ require . resolve ( 'buffer' ) , 'Buffer' ] ,
1908
1910
// Avoid process being overridden when in web run time
@@ -1952,7 +1954,7 @@ export default async function getBaseWebpackConfig(
1952
1954
// solution that requires the user to opt into importing specific locales.
1953
1955
// https://github.com/jmblog/how-to-optimize-momentjs-with-webpack
1954
1956
config . excludeDefaultMomentLocales &&
1955
- new webpack . IgnorePlugin ( {
1957
+ new bundler . IgnorePlugin ( {
1956
1958
resourceRegExp : / ^ \. \/ l o c a l e $ / ,
1957
1959
contextRegExp : / m o m e n t $ / ,
1958
1960
} ) ,
@@ -1969,14 +1971,14 @@ export default async function getBaseWebpackConfig(
1969
1971
]
1970
1972
1971
1973
if ( isClient || isEdgeServer ) {
1972
- devPlugins . push ( new webpack . HotModuleReplacementPlugin ( ) )
1974
+ devPlugins . push ( new bundler . HotModuleReplacementPlugin ( ) )
1973
1975
}
1974
1976
1975
1977
return devPlugins
1976
1978
} ) ( )
1977
1979
: [ ] ) ,
1978
1980
! dev &&
1979
- new webpack . IgnorePlugin ( {
1981
+ new bundler . IgnorePlugin ( {
1980
1982
resourceRegExp : / r e a c t - i s / ,
1981
1983
contextRegExp : / n e x t [ \\ / ] d i s t [ \\ / ] / ,
1982
1984
} ) ,
0 commit comments