@@ -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
@@ -1867,7 +1869,7 @@ export default async function getBaseWebpackConfig(
1867
1869
} ,
1868
1870
plugins : [
1869
1871
isNodeServer &&
1870
- new webpack . NormalModuleReplacementPlugin (
1872
+ new bundler . NormalModuleReplacementPlugin (
1871
1873
/ \. \/ ( .+ ) \. s h a r e d - r u n t i m e $ / ,
1872
1874
function ( resource ) {
1873
1875
const moduleName = path . basename (
@@ -1899,7 +1901,7 @@ export default async function getBaseWebpackConfig(
1899
1901
: new ReactRefreshWebpackPlugin ( webpack ) ) ,
1900
1902
// Makes sure `Buffer` and `process` are polyfilled in client and flight bundles (same behavior as webpack 4)
1901
1903
( isClient || isEdgeServer ) &&
1902
- new webpack . ProvidePlugin ( {
1904
+ new bundler . ProvidePlugin ( {
1903
1905
// Buffer is used by getInlineScriptSource
1904
1906
Buffer : [ require . resolve ( 'buffer' ) , 'Buffer' ] ,
1905
1907
// Avoid process being overridden when in web run time
@@ -1949,7 +1951,7 @@ export default async function getBaseWebpackConfig(
1949
1951
// solution that requires the user to opt into importing specific locales.
1950
1952
// https://github.com/jmblog/how-to-optimize-momentjs-with-webpack
1951
1953
config . excludeDefaultMomentLocales &&
1952
- new webpack . IgnorePlugin ( {
1954
+ new bundler . IgnorePlugin ( {
1953
1955
resourceRegExp : / ^ \. \/ l o c a l e $ / ,
1954
1956
contextRegExp : / m o m e n t $ / ,
1955
1957
} ) ,
@@ -1966,14 +1968,14 @@ export default async function getBaseWebpackConfig(
1966
1968
]
1967
1969
1968
1970
if ( isClient || isEdgeServer ) {
1969
- devPlugins . push ( new webpack . HotModuleReplacementPlugin ( ) )
1971
+ devPlugins . push ( new bundler . HotModuleReplacementPlugin ( ) )
1970
1972
}
1971
1973
1972
1974
return devPlugins
1973
1975
} ) ( )
1974
1976
: [ ] ) ,
1975
1977
! dev &&
1976
- new webpack . IgnorePlugin ( {
1978
+ new bundler . IgnorePlugin ( {
1977
1979
resourceRegExp : / r e a c t - i s / ,
1978
1980
contextRegExp : / n e x t [ \\ / ] d i s t [ \\ / ] / ,
1979
1981
} ) ,
0 commit comments