mirror of
https://github.com/bitwarden/browser
synced 2025-12-29 14:43:31 +00:00
2nd part of PM-29448. Consumes the new send table in the web vault. Also updates the send table to contain the responsive behaviour.
17 lines
570 B
JavaScript
17 lines
570 B
JavaScript
/* eslint-disable @typescript-eslint/no-require-imports */
|
|
const config = require("../../libs/components/tailwind.config.base");
|
|
|
|
config.content = [
|
|
"./src/**/*.{html,ts}",
|
|
"../../libs/components/src/**/*.{html,ts}",
|
|
"../../libs/assets/src/**/*.{html,ts}",
|
|
"../../libs/auth/src/**/*.{html,ts}",
|
|
"../../libs/key-management-ui/src/**/*.{html,ts}",
|
|
"../../libs/angular/src/**/*.{html,ts}",
|
|
"../../libs/vault/src/**/*.{html,ts,mdx}",
|
|
"../../libs/pricing/src/**/*.{html,ts}",
|
|
"../../libs/tools/send/send-ui/src/**/*.{html,ts}",
|
|
];
|
|
|
|
module.exports = config;
|