From a3e1c2f9c0408e2d52a493224b3a15814c6d68d1 Mon Sep 17 00:00:00 2001 From: Rupendra0 Date: Tue, 11 Nov 2025 11:46:40 +0530 Subject: [PATCH] docs: fix spelling error 'accomodate' to 'accommodate' Fixed typo in normal-module-replacement-plugin.mdx where 'accomodate' was incorrectly spelled. The correct spelling is 'accommodate' with double 'm'. --- src/content/plugins/normal-module-replacement-plugin.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/plugins/normal-module-replacement-plugin.mdx b/src/content/plugins/normal-module-replacement-plugin.mdx index 42eb57436dc1..f20b2243ea31 100644 --- a/src/content/plugins/normal-module-replacement-plugin.mdx +++ b/src/content/plugins/normal-module-replacement-plugin.mdx @@ -19,7 +19,7 @@ new webpack.NormalModuleReplacementPlugin(resourceRegExp, newResource); Note that the `resourceRegExp` is tested against the request you write in your code, not the resolved resource. For instance, `'./sum'` will be used to test instead of `'./sum.js'` when you have code `import sum from './sum'`. -Also please note that when using Windows, you have to accomodate for the different folder separator symbol. E.g. `/src\/environments\/environment\.ts/` won't work on Windows, you have to use `/src[\\/]environments[\\/]environment\.ts/,` instead. +Also please note that when using Windows, you have to accommodate for the different folder separator symbol. E.g. `/src\/environments\/environment\.ts/` won't work on Windows, you have to use `/src[\\/]environments[\\/]environment\.ts/,` instead. ## Basic Example