mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-16 10:45:20 +01:00
5c576fd19e
* add libs/vault * update configs * update package lock * fix typo
19 lines
446 B
JavaScript
19 lines
446 B
JavaScript
/* eslint-disable */
|
|
const config = require("./libs/components/tailwind.config.base");
|
|
|
|
config.content = [
|
|
"./libs/components/src/**/*.{html,ts,mdx}",
|
|
"./libs/auth/src/**/*.{html,ts,mdx}",
|
|
"./libs/vault/src/**/*.{html,ts,mdx}",
|
|
"./apps/web/src/**/*.{html,ts,mdx}",
|
|
"./bitwarden_license/bit-web/src/**/*.{html,ts,mdx}",
|
|
"./.storybook/preview.js",
|
|
];
|
|
config.safelist = [
|
|
{
|
|
pattern: /tw-bg-(.*)/,
|
|
},
|
|
];
|
|
|
|
module.exports = config;
|