Files
noahspan-flying/app/tailwind.config.js
noahspannbauer 6782c1906d Features/15 add azure app configuration (#16)
* Adding app config module

* adding app context

* adding app context and feature flag hooks

---------

Co-authored-by: Noah Spannbauer <nspannbauer@sensonix.com>
2024-05-28 12:35:34 -05:00

16 lines
326 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()]
};