mirror of
https://github.com/bitwarden/clients.git
synced 2026-06-04 21:04:29 +08:00
14 lines
493 B
JavaScript
14 lines
493 B
JavaScript
/* eslint-disable @typescript-eslint/no-require-imports */
|
|
const path = require("path");
|
|
|
|
const config = require("../../libs/components/tailwind.config.base");
|
|
|
|
// Add browser-specific paths here. Shared libs should go in tailwind.config.base.js instead
|
|
const browserContent = [path.resolve(__dirname, "./src/**/*.{html,ts,mdx}")];
|
|
|
|
config.content = [...config.content, ...browserContent];
|
|
config.browserContent = browserContent;
|
|
config.corePlugins.preflight = true;
|
|
|
|
module.exports = config;
|