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
If you have a package.json key like this:
"browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] }
The PostCSS Preset Env plugin does not load the 'development' key in development mode but 'production' :)
Possible fix, manual set NODE_ENV or process.env.NODE_ENV = 'development' or 'production'
or manually set BROWSERSLIST_ENV
The text was updated successfully, but these errors were encountered:
Just came across this by accident, is this maybe related to this issue? 🤔
csstools/postcss-preset-env#206
Sorry, something went wrong.
Thank you for this issue. There has not been a lot of activity here for a while. Has this been resolved?
No branches or pull requests
If you have a package.json key like this:
The PostCSS Preset Env plugin does not load the 'development' key in development mode but 'production' :)
Possible fix, manual set NODE_ENV or process.env.NODE_ENV = 'development' or 'production'
or manually set BROWSERSLIST_ENV
The text was updated successfully, but these errors were encountered: