1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-18 10:23:52 +00:00
Files
browser/apps/web/tailwind.config.js
Oscar Hinton bd0e009379 [PM-29448] Consume the new send table in web (#17923)
2nd part of PM-29448. Consumes the new send table in the web vault. Also updates the send table to contain the responsive behaviour.
2026-02-17 09:25:31 -08:00

20 lines
965 B
JavaScript

/* eslint-disable no-undef, @typescript-eslint/no-var-requires */
const path = require("path");
const config = require("../../libs/components/tailwind.config.base");
config.content = [
path.resolve(__dirname, "./src/**/*.{html,ts}"),
path.resolve(__dirname, "../../libs/components/src/**/*.{html,ts}"),
path.resolve(__dirname, "../../libs/assets/src/**/*.{html,ts}"),
path.resolve(__dirname, "../../libs/auth/src/**/*.{html,ts}"),
path.resolve(__dirname, "../../libs/key-management-ui/src/**/*.{html,ts}"),
path.resolve(__dirname, "../../libs/vault/src/**/*.{html,ts}"),
path.resolve(__dirname, "../../libs/angular/src/**/*.{html,ts}"),
path.resolve(__dirname, "../../libs/tools/generator/components/src/**/*.{html,ts}"),
path.resolve(__dirname, "../../libs/tools/send/send-ui/src/**/*.{html,ts}"),
path.resolve(__dirname, "../../bitwarden_license/bit-web/src/**/*.{html,ts}"),
];
config.corePlugins.preflight = true;
module.exports = config;