Skip to content
This repository was archived by the owner on May 16, 2025. It is now read-only.

Commit 46d06ae

Browse files
committed
webpack bundle: remove presumably unnecessary warnings
Those "Conflicting order" warnings can be safely ignored in projects "where css ordering has been mitigated through consistent use of scoping or naming conventions", which should be our case with Svelte. Those warnings appeared in c6b864e due to the addition of a new dependency to works_browser_section.svelte: import WorkActions from '#entities/components/layouts/work_actions.svelte' Related issue: facebook/create-react-app#5372 (comment)
1 parent dc10b81 commit 46d06ae

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

bundle/plugins/extract_css.cjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ const MiniCssExtractPlugin = require('mini-css-extract-plugin')
33
module.exports = new MiniCssExtractPlugin({
44
filename: '[name].[contenthash:8].css',
55
chunkFilename: '[name].[contenthash:8].css',
6+
// See https://github.com/webpack-contrib/mini-css-extract-plugin#ignoreOrder
7+
ignoreOrder: true,
68
})

0 commit comments

Comments
 (0)