Skip to content

Commit

Permalink
Merge pull request #1209 from embroider-build/css-chunk-naming
Browse files Browse the repository at this point in the history
fix default css chunk naming
  • Loading branch information
ef4 committed May 24, 2022
2 parents c95b3a1 + 73d2748 commit 7099a11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/webpack/src/ember-webpack.ts
Expand Up @@ -568,8 +568,8 @@ const Webpack: PackagerConstructor<Options> = class Webpack implements Packager
loaders: [MiniCssExtractPlugin.loader, cssLoader],
plugins: [
new MiniCssExtractPlugin({
filename: `chunk.[chunkhash].css`,
chunkFilename: `chunk.[chunkhash].css`,
filename: `assets/chunk.[chunkhash].css`,
chunkFilename: `assets/chunk.[chunkhash].css`,
// in the browser, MiniCssExtractPlugin can manage it's own runtime
// lazy loading of stylesheets.
//
Expand Down

0 comments on commit 7099a11

Please sign in to comment.