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