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
As for now, if you want sourcemaps not inlined in CSS, you need to use:
{ "sourcemaps": { "map": { "inline": false } } }
as the PostCSS specify it. I want to add an alias as string, but can't find a simple and unambiguous word. For example like:
"external" "separate" "outside" "out"
We'll use it as:
{ "sourcemaps": "..." }
or even:
{ "sourcemaps": { "map": "..." } }
Any opinion someone ?
The text was updated successfully, but these errors were encountered:
honestly, I like inline: false ^^ for an alias i would go for "reference or external" as you are referencing the external sourcemap ;)
Sorry, something went wrong.
You could also follow the Sass way by enabling sourcemap by default 😄
I would treat the option in this way:
sourcemaps: none
sourcemaps: "../maps"
sourcemaps: inline
I hope that it will help you. 🐈
No branches or pull requests
As for now, if you want sourcemaps not inlined in CSS, you need to use:
as the PostCSS specify it.
I want to add an alias as string, but can't find a simple and unambiguous word. For example like:
We'll use it as:
or even:
Any opinion someone ?
The text was updated successfully, but these errors were encountered: