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