Make sure that polyfills are loaded before the storybook is loaded

This commit is contained in:
Kasper Peulen 2025-03-14 20:35:19 +01:00
parent 0a3dc90570
commit a59c35ade2

View File

@ -87,9 +87,9 @@ exports.getWebpackConfig = async (baseConfig, { builderOptions, builderContext }
/** Merge baseConfig Webpack with angular-cli Webpack */
const entry = [
...(cliConfig.entry.polyfills ?? []),
...baseConfig.entry,
...(cliConfig.entry.styles ?? []),
...(cliConfig.entry.polyfills ?? []),
];
// Don't use storybooks styling rules because we have to use rules created by @angular-devkit/build-angular