parent
3a4183cd48
commit
1f640fda5e
@ -1,13 +1,6 @@
|
|||||||
// If you want to use other PostCSS plugins, see the following:
|
|
||||||
// https://tailwindcss.com/docs/using-with-preprocessors
|
|
||||||
|
|
||||||
const config = require('@tih/tailwind-config/tailwind.config.js');
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: {
|
plugins: {
|
||||||
// Specifying the config is not necessary in most cases, but it is included
|
tailwindcss: {},
|
||||||
// here to share the same config across the entire monorepo
|
|
||||||
tailwindcss: { config },
|
|
||||||
autoprefixer: {},
|
autoprefixer: {},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
@ -0,0 +1,9 @@
|
|||||||
|
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}'],
|
||||||
|
};
|
||||||
Loading…
Reference in new issue