-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Duplicate CSS files while flushing #64
Comments
@faceyspacey, @ScriptedAlchemy , it seems to be the same issue like the one mentioned in #61 Initial fix for #61 includes takes into consideration first argument passed to I was able to replicate the issue on next setup: "babel-plugin-universal-import": "^3.0.3",
"react-universal-component": "^3.0.3",
"webpack-flush-chunks": "^2.0.1",
"extract-css-chunks-webpack-plugin": "^3.0.11", with stats file generated with "webpack-stats-plugin": "^0.2.1", optimization: {
splitChunks: {
chunks: 'async', // async, initial, all
minSize: 30000,
minChunks: 1,
maxInitialRequests: 5,
maxAsyncRequests: 3,
automaticNameDelimiter: CHUNKS_NAME_DELIMITER,
name: false,
cacheGroups: {
app: {
test: /[\\/]@app-common[\\/]/,
name: 'app',
},
cells: {
test: /[\\/]@cells[\\/]/,
name: 'cells',
},
common: {
test: /[\\/]@common[\\/]/,
name: 'common',
},
utils: {
test: /[\\/]@utils[\\/]/,
name: 'utils',
},
vendors: {
test: /[\\/]@node_modules[\\/]/,
name: 'vendor',
priority: -20,
}
},
},
}, Quick check with adding isUnique call for second argument passed to _createApiWithCss2 in compiled code seems to solve the issue. // node_modules/webpack-flush-chunks/dist/flushChunks.js:25
return (0, _createApiWithCss2.default)([].concat(_toConsumableArray(jsBefore), _toConsumableArray(files), _toConsumableArray(jsAfter)).filter(isUnique), [].concat(_toConsumableArray(jsBefore), _toConsumableArray(jsAfter.reverse()), _toConsumableArray(files)).filter(isUnique), stats, opts.outputPath); before adding: <link rel='stylesheet' href='/css/chunks/common.90e728aa3054798fe428.css' />
<link rel='stylesheet' href='/css/chunks/app.0686eedf7cedb804bc00.css' />
<link rel='stylesheet' href='/css/main.ccfbbfe1ef5f990ca905.css' />
<link rel='stylesheet' href='/css/chunks/common.90e728aa3054798fe428.css' />
<link rel='stylesheet' href='/css/chunks/app.0686eedf7cedb804bc00.css' />
<link rel='stylesheet' href='/css/chunks/app.0686eedf7cedb804bc00.css' />
<link rel='stylesheet' href='/css/chunks/common.90e728aa3054798fe428.css' />
<link rel='stylesheet' href='/css/chunks/landing.container.c5b76b8c18b56e0d3d70.css' /> and after adding: <link rel='stylesheet' href='/css/chunks/common.28157dcd2e468c7f4494.css' />
<link rel='stylesheet' href='/css/chunks/app.3bc735b9f7b1db77a218.css' />
<link rel='stylesheet' href='/css/main.a032936feb332b73b7a6.css' />
<link rel='stylesheet' href='/css/chunks/landing.container.c5b76b8c18b56e0d3d70.css' /> |
I am migrating a project to use flush chunks. Unfortunately I see duplicate entries for my main CSS assets being generated:
When using
I see the following style rules being added to the head:
This is with Webpack v4, a single "entry", and split chunks instructions for vendor and runtime:
The text was updated successfully, but these errors were encountered: