diff --git a/web/tailwind.config.js b/web/tailwind.config.js index 8c72e89b0d..5a87e424ef 100644 --- a/web/tailwind.config.js +++ b/web/tailwind.config.js @@ -1,9 +1,10 @@ const defaultTheme = require('tailwindcss/defaultTheme') module.exports = { - mode: 'jit', - purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'], - darkMode: false, // or 'media' or 'class' + content: [ + './pages/**/*.{js,ts,jsx,tsx}', + './components/**/*.{js,ts,jsx,tsx}', + ], theme: { fontFamily: Object.assign( { ...defaultTheme.fontFamily }, @@ -18,9 +19,6 @@ module.exports = { }, }, }, - variants: { - extend: {}, - }, plugins: [ require('@tailwindcss/forms'), require('@tailwindcss/typography'),