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