Skip to content

Commit

Permalink
feat: disable preflight
Browse files Browse the repository at this point in the history
  • Loading branch information
alicanerdurmaz committed May 31, 2024
1 parent 0311ca3 commit d43398c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions refine-nextjs/plugins/tailwindcss/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@ module.exports = {
extend: {},
},
plugins: [],
corePlugins: {
preflight: false,
},
};
3 changes: 3 additions & 0 deletions refine-remix/plugins/tailwindcss/tailwind.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@ export default {
extend: {},
},
plugins: [],
corePlugins: {
preflight: false,
},
} satisfies Config;
3 changes: 3 additions & 0 deletions refine-vite/plugins/tailwindcss/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,7 @@ export default {
extend: {},
},
plugins: [],
corePlugins: {
preflight: false,
},
};

0 comments on commit d43398c

Please sign in to comment.