add edge ui common project

This commit is contained in:
zizifn
2023-01-02 03:16:57 +08:00
committed by zizifn
parent d0202034b0
commit fed5ce3ad7
24 changed files with 373 additions and 75 deletions

View File

@@ -0,0 +1,15 @@
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: {},
},
};