Skip to content

Commit a2fc100

Browse files
committed
fix tailwindcss missing css bug
- make sure to add global components path to config
1 parent ce44451 commit a2fc100

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

landing-page/tailwind.config.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
/** @type {import('tailwindcss').Config} */
22
module.exports = {
3-
content: ["./**/*.md", "./.vitepress/theme/**/*.{vue,js,ts}"],
3+
content: [
4+
"./**/*.md",
5+
"./.vitepress/theme/**/*.{vue,js,ts}",
6+
"../components/**/*.vue",
7+
],
48
theme: {
59
extend: {
610
screens: {

0 commit comments

Comments
 (0)