-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
26 lines (21 loc) · 1 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
Tailwind - The Utility-First CSS Framework
A project by Adam Wathan (@adamwathan), Jonathan Reinink (@reinink),
David Hemphill (@davidhemphill) and Steve Schoger (@steveschoger).
Welcome to the Tailwind config file. This is where you can customize
Tailwind specifically for your project. Don't be intimidated by the
length of this file. It's really just a big JavaScript object and
we've done our very best to explain each section.
View the full documentation at https://tailwindcss.com.
*/
// See defaults: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
module.exports = {
// Purge our generated CSS and only leave the css classes found in these files.
content: [
'./Core/Layout/Templates/**/*.{twig,html}',
'./Core/Layout/EditorTemplates/**/*.{twig,html}',
'./Core/Js/**/*.{js,jsx,ts,tsx}',
'./Modules/**/Layout/{Templates,Widgets}/**/*.{twig,html}',
],
plugins: [require('@tailwindcss/typography'), require('@tailwindcss/forms')],
};