mirror of
https://github.com/lumehq/lume.git
synced 2025-03-26 01:31:48 +01:00
15 lines
329 B
JavaScript
15 lines
329 B
JavaScript
import sharedConfig from "@lume/tailwindcss";
|
|
|
|
const config = {
|
|
content: [
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
"../../packages/@columns/**/*{.js,.ts,.jsx,.tsx}",
|
|
"../../packages/ark/**/*{.js,.ts,.jsx,.tsx}",
|
|
"../../packages/ui/**/*{.js,.ts,.jsx,.tsx}",
|
|
"index.html",
|
|
],
|
|
presets: [sharedConfig],
|
|
};
|
|
|
|
export default config;
|