ToolJet/docs/tailwind.config.js

13 lines
289 B
JavaScript
Raw Normal View History

2024-08-26 07:33:01 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
2024-09-19 22:23:20 +00:00
"./versioned_docs/version-2.50.0-LTS/doc-home-page.mdx",
2024-08-26 07:33:01 +00:00
],
theme: {
extend: {},
},
plugins: [],
2024-09-19 22:23:20 +00:00
corePlugins: {
preflight: false, // This prevents Tailwind from resetting global styles
},
}