FredKSchott / snowpack

ESM-powered frontend build tool. Instant, lightweight, unbundled development. ✌️
https://www.snowpack.dev
MIT License
19.48k stars 922 forks source link

🐛 BUG: #3787

Closed GabrielPedroza closed 3 years ago

GabrielPedroza commented 3 years ago

Quick checklist

What package manager are you using?

npm

What operating system are you using?

mac

Describe the bug

Followed all steps: npm install --save-dev @snowpack/plugin-postcss postcss export default { plugins: ['@snowpack/plugin-postcss'], }; const cssnano = require('cssnano'); const postcssPresetEnv = require('postcss-preset-env');

module.exports = { plugins: [cssnano(), postcssPresetEnv()], }; Config file inside root directory

still does not compile my scss

Steps to reproduce

  1. npx create-snowpack-app using template
  2. ...
  3. ...
  4. ...
  5. Error! Describe what went wrong (and what was expected instead)...

Link to minimal reproducible example (optional)

https://github.com/GabrielPedroza/project-one.git

GabrielPedroza commented 3 years ago

mistaken