1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-07-02 11:34:53 +02:00
bitwarden-browser/apps/web/tailwind.config.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
313 B
JavaScript
Raw Normal View History

2022-03-08 18:18:03 +01:00
/* eslint-disable no-undef, @typescript-eslint/no-var-requires */
2022-06-03 18:01:07 +02:00
const config = require("../../libs/components/tailwind.config.base");
2022-03-08 18:18:03 +01:00
config.content = [
"./src/**/*.{html,ts}",
"../../libs/components/src/**/*.{html,ts}",
"../../bitwarden_license/bit-web/src/**/*.{html,ts}",
];
2022-03-08 18:18:03 +01:00
module.exports = config;