Questions tagged [postcss-scss]

2 questions
1
vote
1 answer

How to use postcss-scss parser in Nuxt3?

In Nuxt2 i used postcss-scss parser to support inline style comments "//". I used below setup in nuxt.config export default { postcss: { parser: require('postcss-scss'), plugins: { 'postcss-nested': {}, } } How to use postcss-scss…
user1276919
  • 550
  • 5
  • 25
0
votes
0 answers

Not converting inline comments with postcss & scss

I'm using postcss & postcss-scss for a codemod and don't want it to touch comments, but everything I try converts them into block comments. example: const postcssScss = require('postcss-scss'); const postcss = require('postcss') const scss = `div…
user18880047