From d1817aad93ee854166a7a3317f5745d2d6aac169 Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sat, 6 Mar 2021 17:29:55 -0600 Subject: [PATCH] Include eleventy tempaltes in tailwind purge --- tailwind.config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tailwind.config.js b/tailwind.config.js index f21b5b2..9ef8752 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -3,8 +3,10 @@ module.exports = { enabled: true,//process.env.NODE_ENV === 'production', content: [ 'components/**/*.vue', + 'layouts-eleventy/**/*.js', 'layouts/**/*.vue', 'pages/**/*.vue', + 'pages-eleventy/**/*.js', 'plugins/**/*.js', 'nuxt.config.js' ]