mirror of
https://github.com/m-damien/VisualStoryWriting.git
synced 2026-08-28 17:22:11 +08:00
14 lines
320 B
JavaScript
14 lines
320 B
JavaScript
import { nextui } from '@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: {},
|
|
},
|
|
plugins: [nextui()],
|
|
} |