Fix path to templates that's used when minifying tailwind CSS

This commit is contained in:
Nathan Sobo 2021-11-07 07:32:26 -07:00
parent f33d30cb9d
commit c2b44537aa

View file

@ -32,7 +32,7 @@ module.exports = {
black: colors.black,
white: colors.white,
gray: colors.trueGray,
},
},
extend: {},
},
@ -40,7 +40,7 @@ module.exports = {
},
darkMode: false,
purge: [
"../server/templates/**/*.hbs",
"../server/templates/*.hbs"
"../crates/server/templates/**/*.hbs",
"../crates/server/templates/*.hbs"
]
}