mirror of
https://github.com/noahpaige/portfolio-website.git
synced 2026-06-09 00:28:02 -06:00
25 lines
401 B
JavaScript
25 lines
401 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
mode: 'jit',
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,jsx}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
require("daisyui")
|
|
],
|
|
daisyui: {
|
|
styled: true,
|
|
themes: true,
|
|
base: true,
|
|
utils: true,
|
|
logs: true,
|
|
rtl: false,
|
|
darkTheme: "dark",
|
|
}
|
|
}
|