Skip to content

Commit 2a8608c

Browse files
authored
Add site (#63)
1 parent 5ccae2e commit 2a8608c

27 files changed

+5662
-59
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,4 +103,4 @@ dist
103103
# TernJS port file
104104
.tern-port
105105

106-
site/.vitepress/cache
106+
.astro

package.json

+5
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,10 @@
4747
},
4848
"manypkg": {
4949
"defaultBranch": "main"
50+
},
51+
"pnpm": {
52+
"patchedDependencies": {
53+
"@astrojs/starlight-tailwind": "patches/@astrojs__starlight-tailwind.patch"
54+
}
5055
}
5156
}
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
diff --git a/index.ts b/index.ts
2+
index 8253e70a9d7aba3f76d198d52a0a0e91be592a6d..1b9f6a4e7958bf19589205e4e3096091a8dd6bd8 100644
3+
--- a/index.ts
4+
+++ b/index.ts
5+
@@ -33,6 +33,7 @@ import plugin from 'tailwindcss/plugin';
6+
const StarlightTailwindPlugin = () =>
7+
plugin(
8+
({ addBase, theme, config }) => {
9+
+ // @ts-ignore
10+
if (config<string>('prefix') === 'sl-') {
11+
console.warn(
12+
'A Tailwind prefix of "sl-" will clash with Starlight’s built-in styles.\n' +
13+
@@ -110,6 +111,7 @@ const StarlightTailwindPlugin = () =>
14+
{
15+
// Starlight uses a `data-theme` attribute to power its dark mode.
16+
darkMode: ['class', '[data-theme="dark"]'],
17+
+ // @ts-ignore
18+
corePlugins: {
19+
// Disable Tailwind’s default reset styles which conflict with Starlight.
20+
preflight: false,

0 commit comments

Comments
 (0)