12 lines
263 B
JavaScript
12 lines
263 B
JavaScript
|
/* eslint-disable */
|
||
|
const config = require("./libs/components/tailwind.config.base");
|
||
|
|
||
|
config.content = ["./libs/components/src/**/*.{html,ts,mdx}", "./.storybook/preview.js"];
|
||
|
config.safelist = [
|
||
|
{
|
||
|
pattern: /tw-bg-(.*)/,
|
||
|
},
|
||
|
];
|
||
|
|
||
|
module.exports = config;
|