Skip to content
This repository was archived by the owner on Apr 19, 2021. It is now read-only.

Commit 0c9c363

Browse files
committed
⚡️ feat: opt in to removing deprecated Tailwind gap utilities
1 parent b40714d commit 0c9c363

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tailwind.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,15 @@
88
import tailwindui from "@tailwindcss/ui";
99

1010
export const purge = false; // Purging is taken care of in postcss.config.js
11+
1112
export const theme = {
1213
extend: {},
1314
};
1415
export const variants = {};
1516
export const plugins = [
1617
tailwindui, // Can drastically slow down build time, disable if a problem
1718
];
19+
20+
export const future = {
21+
removeDeprecatedGapUtilities: true,
22+
};

0 commit comments

Comments
 (0)