2022-03-08 11:50:34 +01:00
|
|
|
/* eslint-disable */
|
|
|
|
const config = require("./tailwind.config.base");
|
|
|
|
|
2022-06-16 20:41:22 +02:00
|
|
|
config.content = ["./libs/components/src/**/*.{html,ts,mdx}", "./.storybook/preview.js"];
|
2022-03-15 13:50:42 +01:00
|
|
|
config.safelist = [
|
|
|
|
{
|
|
|
|
pattern: /tw-bg-(.*)/,
|
|
|
|
},
|
|
|
|
];
|
2022-03-08 11:50:34 +01:00
|
|
|
|
|
|
|
module.exports = config;
|