Skip to content

Instantly share code, notes, and snippets.

@jasoncharnes
Last active November 25, 2020 21:51
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
I had to use this setup to get PurgeCSS working with form.text_field
module.exports = {
purge: {
content: [
{
raw: '<html><body><input type="text"/></body></html>',
extension: "html",
},
"./app/**/*.html.erb",
],
options: {
safelist: ["hidden", /input/],
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment