You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
377 B
10 lines
377 B
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}'],
|
|
};
|