-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (33 loc) · 854 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (33 loc) · 854 Bytes
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
27
28
29
30
31
32
33
/** @type {import('tailwindcss').Config} */
export default {
purge: {
enabled: true,
content: [
"./public/**/*.html",
"./public/*.html",
"./src/**/*.vue",
"./src/*.vue",
"./src/*.vue",
"./src/**/*.vue",
"./src/**/*.html",
"./src/*.html",
"./public/**/*.vue",
"./public/*.vue",
"./index.html",
"./src/**/*.{vue,ts,tsx}",
"./src/components/**/*.{vue,ts,tsx}",
"./src/pages/**/*.{vue,ts,tsx}",
"./src/pages/*.{vue, ts, tsx}",
"./src/helpers/**/*.{vue, ts, tsx}",
"path-to-your-node_modules/@material-tailwind/react/components/**/*.{vue,ts,tsx}",
"path-to-your-node_modules/@material-tailwind/react/theme/components/**/*.{vue,ts,tsx}",
],
options: {
safelist: [],
},
},
theme: {
extend: {},
},
plugins: [],
}