mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-04 09:01:01 +01:00
16 lines
309 B
JavaScript
16 lines
309 B
JavaScript
/* eslint-disable */
|
|
const config = require("./libs/components/tailwind.config.base");
|
|
|
|
config.content = [
|
|
"./libs/components/src/**/*.{html,ts,mdx}",
|
|
"./apps/web/src/**/*.{html,ts,mdx}",
|
|
"./.storybook/preview.js",
|
|
];
|
|
config.safelist = [
|
|
{
|
|
pattern: /tw-bg-(.*)/,
|
|
},
|
|
];
|
|
|
|
module.exports = config;
|