Initial Code Commit
This commit is contained in:
22
Project/tailwind.config.js
Executable file
22
Project/tailwind.config.js
Executable file
@@ -0,0 +1,22 @@
|
||||
import { nextui } from '@nextui-org/theme'
|
||||
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
content: [
|
||||
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
||||
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
||||
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}'
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
sans: ["var(--font-sans)"],
|
||||
mono: ["var(--font-mono)"],
|
||||
baskerville: ["Libre Baskerville", "serif"],
|
||||
},
|
||||
},
|
||||
},
|
||||
darkMode: "class",
|
||||
darkMode: "class",
|
||||
plugins: [nextui()],
|
||||
}
|
||||
Reference in New Issue
Block a user