mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 01:12:56 +03:00
6289b06453
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6450 GitOrigin-RevId: 4ee8e72fe62edef0f04be9f6dc66b3788dc9a0f4
16 lines
468 B
JavaScript
16 lines
468 B
JavaScript
const { join } = require('path');
|
|
|
|
// Note: If you use library-specific PostCSS/Tailwind configuration then you should remove the `postcssConfig` build
|
|
// option from your application's configuration (i.e. project.json).
|
|
//
|
|
// See: https://nx.dev/guides/using-tailwind-css-in-react#step-4:-applying-configuration-to-libraries
|
|
|
|
module.exports = {
|
|
plugins: {
|
|
tailwindcss: {
|
|
config: join(__dirname, 'tailwind.config.js'),
|
|
},
|
|
autoprefixer: {},
|
|
},
|
|
};
|