mirror of
https://github.com/lumehq/lume.git
synced 2025-03-29 11:11:43 +01:00
11 lines
192 B
JavaScript
11 lines
192 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
|
|
import preset from "@lume/tailwindcss";
|
|
|
|
const config = {
|
|
content: ["./src/**/*.{js,ts,jsx,tsx}"],
|
|
presets: [preset],
|
|
};
|
|
|
|
export default config;
|