Skip to content

Commit

Permalink
Specify localIdentRegExp
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonAlling committed Aug 1, 2024
1 parent b30b3dc commit 288de59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/build-time/internal/webpack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export function createWebpackConfig(x: WebpackConfigParameters): webpack.Configu
context: undefined,
hashPrefix: "", // Documented default is undefined, but actual default seems to be "" based on source code (in css-loader v3.6.0).
// getLocalIdent: Documented default is undefined, but that doesn't work (in css-loader v3.6.0).
// localIdentRegExp: Documented default is undefined, but that is not allowed (v3.6.0).
localIdentRegExp: undefined, // Documented default is undefined, but actual default seems to be null based on source code, but null is not allowed (in css-loader v3.6.0).
},
importLoaders: 0,
localsConvention: "asIs",
Expand Down

0 comments on commit 288de59

Please sign in to comment.