bitwarden-estensione-browser/libs/components/tailwind.config.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
247 B
JavaScript
Raw Normal View History

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;