mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2025-07-07 01:22:09 +08:00
10 lines
377 B
JavaScript
10 lines
377 B
JavaScript
const config = require('@tih/tailwind-config/tailwind.config.js');
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
...config,
|
|
// Extract styles from ui package instead of importing the ui package's generated CSS
|
|
// file as the importing approach runs into style ordering issues.
|
|
content: [...config.content, './../../packages/ui/src/**/*.{ts,tsx}'],
|
|
};
|