Replies: 1 comment
-
Alright, weird. This was the line:
Changed it to this and now it works:
Somehow SASS parsed it well in a separate isolated demo but Parcel's PostCSS didn't |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using extremely complex CSS and get an error:
My css is using directly in the
index.html
<head>
section inside a plain<style>
tag. I wish there was a way to completely ignore it when telling Parcel to build the codeI suspect
postcss-calc
or cssnano are trying to do something which ends up screwing things up and I have no idea how to disable at leastpostcss-calc
to test..I've tried creating a
.postcssrc
file with:and
cssnano.config.js
The error persists when trying to build the project.
when simply running the parcel and watching + local server everything works as expected
Beta Was this translation helpful? Give feedback.
All reactions