Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit 293eea2

Browse files
committed
fix: tailwindcss proper purging
1 parent c86ede6 commit 293eea2

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

tailwind.config.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
// tailwind.config.js
22
module.exports = {
3-
purge: ['./src/**/*.html', './src/**/*.vue', './src/**/*.ts'],
3+
purge: [
4+
'./src/**/*.html',
5+
'./src/**/*.vue',
6+
'./src/**/*.ts',
7+
'./demos/**/*.html',
8+
'./demos/**/*.vue',
9+
'./demos/**/*.ts',
10+
'./docs/**/*.html',
11+
'./docs/**/*.vue',
12+
'./docs/**/*.ts',
13+
],
414
theme: {
515
fontFamily: {
616
display: ['Montserrat'],

0 commit comments

Comments
 (0)