mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-03 08:49:50 +01:00
80ee6d23c3
* Scaffold secrets manager module
11 lines
313 B
JavaScript
11 lines
313 B
JavaScript
/* eslint-disable no-undef, @typescript-eslint/no-var-requires */
|
|
const config = require("../../libs/components/tailwind.config.base");
|
|
|
|
config.content = [
|
|
"./src/**/*.{html,ts}",
|
|
"../../libs/components/src/**/*.{html,ts}",
|
|
"../../bitwarden_license/bit-web/src/**/*.{html,ts}",
|
|
];
|
|
|
|
module.exports = config;
|