* feat: new proxy package * chore: update nx workspace * chore: remove unused codegen lib * chore: add swc-node as build dependencies * chore: remove unused demo-app-e2e app * chore: reorganize demo apps * feat: working cross-engine proxy * chore: update docs * fix: readme file export * chore: update nextjs lib * chore: keep nextjs code
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: {},
|
|
},
|
|
};
|