Files
noahspan-flying/app/tailwind.config.js
noahspannbauer 294ac4e061 Setup Playwright (#14)
* setting up playwright

* renaming client to app

* updating node version

* updating node version

* fixing husky

* fixing husky

* fixing husky

* fixing husky
2024-05-22 21:12:17 -05:00

16 lines
325 B
JavaScript

const { nextui } = require('@nextui-org/react');
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}',
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}'
],
theme: {
extend: {}
},
darkMode: 'class',
plugins: [nextui()]
};