Add custom theme option

This commit is contained in:
Ariful Alam
2022-03-23 02:13:51 +06:00
parent 4013491663
commit 725091dc52
5 changed files with 72 additions and 8 deletions

View File

@@ -1,6 +1,7 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
import tailwind from 'tailwindcss';
import autoprefixer from 'autoprefixer';
import tailwindConfig from './tailwind.config.js';
export default {
plugins: [tailwind(tailwindConfig), autoprefixer],
};