/** @type {import('tailwindcss').Config} */ module.exports = { corePlugins: { preflight: false, }, content: [], theme: { extend: {}, }, plugins: [ require("@tailwindcss/forms")({ strategy: "class", // only generate classes }), ], };