2022-07-26 14:48:11 +02:00
|
|
|
/* eslint-disable */
|
|
|
|
const config = require("./libs/components/tailwind.config.base");
|
|
|
|
|
2022-08-03 21:40:04 +02:00
|
|
|
config.content = [
|
|
|
|
"./libs/components/src/**/*.{html,ts,mdx}",
|
|
|
|
"./apps/web/src/**/*.{html,ts,mdx}",
|
|
|
|
"./.storybook/preview.js",
|
|
|
|
];
|
2022-07-26 14:48:11 +02:00
|
|
|
config.safelist = [
|
|
|
|
{
|
|
|
|
pattern: /tw-bg-(.*)/,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports = config;
|