bitwardenjavascripttypescriptangularelectronclidesktopnodejswebextensionfirefoxbrowser-extensionchromesafari
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
422 B
13 lines
422 B
/* 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}", |
|
"../../libs/vault/src/**/*.{html,ts}", |
|
]; |
|
|
|
module.exports = config;
|
|
|