Skip to content

Instantly share code, notes, and snippets.

@jasoncharnes
Last active November 25, 2020 21:51
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 jasoncharnes/553e7811e2cd05dd29d0e3422c2348ce to your computer and use it in GitHub Desktop.
Save jasoncharnes/553e7811e2cd05dd29d0e3422c2348ce to your computer and use it in GitHub Desktop.
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