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.

17 lines
342 B
JavaScript
Raw Normal View History

2022-03-08 11:50:34 +01:00
/* eslint-disable */
const config = require("./tailwind.config.base");
config.content = [
"libs/components/src/**/*.{html,ts,mdx}",
"apps/web/src/**/*.{html,ts,mdx}",
"bitwarden_license/bit-web/src/**/*.{html,ts,mdx}",
".storybook/preview.tsx",
];
2022-03-15 13:50:42 +01:00
config.safelist = [
{
pattern: /tw-bg-(.*)/,
},
];
2022-03-08 11:50:34 +01:00
module.exports = config;