We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
🐛 bug report
postcss.config.js
module.exports = { plugins: { 'postcss-import': {}, 'postcss-cssnext': { browsers: ['last 2 versions', '> 5%'] } } };
CLI
$ parcel build app.js
app.js
import './css/app.css'
Postcss
:root { --font: 'Helvetica'; } body { font-family: var(--font); }
Exported CSS
body { font-family: 'Helvetica'; }
/* no root pseudo-class */ body { font-family: var(--font); }
This setting is working great when using webpack + postcss-loader.
I tried changing the syntax of postcss setting file though there is no hope.
The text was updated successfully, but these errors were encountered:
I will close this issue. After several tries, I found that it is not postcss-cssnext error. I opened #329 again for right.
Sorry, something went wrong.
No branches or pull requests
🐛 bug report
🎛 Configuration (.babelrc, package.json, cli command)
postcss.config.js
CLI
app.js
🤔 Expected Behavior
Postcss
Exported CSS
😯 Current Behavior
Exported CSS
💁 Possible Solution
This setting is working great when using webpack + postcss-loader.
🔦 Context
I tried changing the syntax of postcss setting file though there is no hope.
🌍 Your Environment
The text was updated successfully, but these errors were encountered: