Skip to content

Instantly share code, notes, and snippets.

View ternavsky's full-sized avatar

Eugene Ternavsky ternavsky

  • https://simplecodesoftware.com/
  • Russia, Novocherkassk
View GitHub Profile
@Alonski
Alonski / ember-cli-build.js
Last active April 4, 2023 16:01
Setting up Ember CLI + SCSS + PostCSS + TailwindCSS + CSSNano
const postcssOptions = {
compile: {
enabled: false // Set compile to false to not run PostCSS *during* compliation
},
filter: {
enabled: true, // Set filter to true to run PostCSS *after* compilation
...require("./postcss.config")
}
};