From 8e37498eaa4b5f67d26d1889e8e1092e1af6e6f4 Mon Sep 17 00:00:00 2001 From: Ben Word Date: Sat, 24 Sep 2022 10:23:39 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20theme.json=20generator=20-=20mov?= =?UTF-8?q?e=20Tailwind=20to=20end?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bud.config.mjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bud.config.mjs b/bud.config.mjs index cb4036f..07094f2 100644 --- a/bud.config.mjs +++ b/bud.config.mjs @@ -47,9 +47,6 @@ export default async (app) => { * @note This overwrites `theme.json` on every build. */ .wpjson - .useTailwindColors() - .useTailwindFontFamily() - .useTailwindFontSize() .settings({ color: { custom: false, @@ -72,5 +69,8 @@ export default async (app) => { customFontSize: false, }, }) + .useTailwindColors() + .useTailwindFontFamily() + .useTailwindFontSize() .enable() };