Skip to content

Instantly share code, notes, and snippets.

@irekBudzowski
Last active February 19, 2021 09:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save irekBudzowski/04e374c762d8a06dbb35f3c3265e3ce0 to your computer and use it in GitHub Desktop.
Save irekBudzowski/04e374c762d8a06dbb35f3c3265e3ce0 to your computer and use it in GitHub Desktop.
Konfguracja purge w tailwind
module.exports = {
purge: {
enabled: process.env.WEBPACK_DEV_SERVER === 'true' && process.argv.indexOf("build") !== -1,
content: [
"./src/**/*.html",
"./src/**/*.ts"
]
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
},
variants: {},
plugins: [],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment