mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-07 09:31:31 +01:00
fdd2c774c6
* Add vault files to config.content array. * Adjust unordered list spacing.
14 lines
437 B
JavaScript
14 lines
437 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}",
|
|
"../../libs/auth/src/**/*.{html,ts}",
|
|
"../../libs/vault/src/**/*.{html,ts}",
|
|
"../../libs/angular/src/**/*.{html,ts}",
|
|
"../../bitwarden_license/bit-web/src/**/*.{html,ts}",
|
|
];
|
|
|
|
module.exports = config;
|