-
Notifications
You must be signed in to change notification settings - Fork 17
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
Duplicated a media rules in css #29
Comments
You need different values in the Like this: postCss: [
require('postcss-extract-media-query')({
output: {
path: path.join(__dirname, '/public/css'),
name: '[query].css'
},
queries: {
'only screen and (min-width: 1023px)': 'desktop-1023px',
'only screen and (min-width: 1460px)': 'desktop-1023px',
'only screen and (min-width: 1800px)': 'desktop-1800px',
'only screen and (min-width: 1870px)': 'desktop-1870px',
'only screen and (min-width: 2100px)': 'desktop-2100px',
'only screen and (min-width: 2400px)': 'desktop-2400px'
},
extractAll: false
}),
], Btw, depending on the contents. I think that you can use fewer queries, like: postCss: [
require('postcss-extract-media-query')({
output: {
path: path.join(__dirname, '/public/css'),
name: '[query].css'
},
queries: {
'only screen and (min-width: 1023px)': 'desktop-1023px',
'only screen and (min-width: 1800px)': 'desktop-1800px',
'only screen and (min-width: 2100px)': 'desktop-2100px'
},
extractAll: false
}),
], |
@nucliweb ,thank you for answer, but the problem persists.
console:
I disabled all configuration in webpack.mix.js besides this:
Is it incompatible with laravel mix? |
Yes. Duplicate media query with Laravel Mix. |
Did anyone find a solution for this? |
Webpack version: |
@EugenGedroyc @elambro If I understand correctly, then you need to first perform the merging of media queries with postcss-sort-media-queries, plugin sort and combine same media queries into one and then use |
I wrote a new package for this - Extract CSS Media Queries I hope they can help some of you. @EugenGedroyc - My first webpack plugin and my first published npm package! |
my postcss configuration in laravel mix:
Created desktop.css with all queries but thes repeating. The queries save in desktop.css first time and then second time the same way after first time. 'postcss-combine-duplicated-selectors' and '"cssnano": {}' don't helped me
And is strange that console output three times:
P.S. I want to do pull request in documentation, but wait for an answer(if code have mistakes). I spent more than an hour until I realized how it works
The text was updated successfully, but these errors were encountered: