Skip to content

Commit 5bc2c36

Browse files
Merge branch 'ep2025' into ep2025-unconference
2 parents 622fc89 + 8cf2f8b commit 5bc2c36

16 files changed

+313
-140
lines changed

astro.config.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import metaTags from "astro-meta-tags";
99
import pagefind from "astro-pagefind";
1010
import deleteUnusedImages from "astro-delete-unused-images";
1111
import { execSync } from "node:child_process";
12+
import svelte from "@astrojs/svelte";
1213
import compress from "astro-compress";
1314
import tailwindcss from "@tailwindcss/vite";
1415

@@ -66,6 +67,7 @@ export default defineConfig({
6667
"@utils": path.resolve("./src/utils"),
6768
"@data": path.resolve("./src/data"),
6869
"@components": path.resolve("./src/components"),
70+
"@stores": path.resolve("./src/stores"),
6971
"@sections": path.resolve("./src/components/sections"),
7072
"@layouts": path.resolve("./src/layouts"),
7173
"@ui": path.resolve("./src/components/ui"),
@@ -116,7 +118,9 @@ export default defineConfig({
116118
metaTags(),
117119
pagefind(),
118120
deleteUnusedImages(),
121+
svelte(),
119122
compress({
123+
HTML: false,
120124
CSS: false,
121125
SVG: false,
122126
}),

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@
1515
"@astrojs/check": "^0.9.4",
1616
"@astrojs/mdx": "^4.3.0",
1717
"@astrojs/sitemap": "^3.4.0",
18-
"@astrojs/tailwind": "^5.1.5",
18+
"@astrojs/svelte": "^7.0.13",
1919
"@astrojs/ts-plugin": "^1.10.4",
2020
"@fortawesome/fontawesome-free": "^6.7.2",
21+
"@nanostores/persistent": "^1.0.0",
2122
"@tailwindcss/typography": "^0.5.16",
2223
"@tailwindcss/vite": "^4.1.7",
2324
"astro": "^5.8.0",
@@ -32,11 +33,13 @@
3233
"hastscript": "^9.0.1",
3334
"js-yaml": "^4.1.0",
3435
"marked": "^15.0.12",
36+
"nanostores": "^1.0.1",
3537
"pagefind": "^1.3.0",
3638
"rehype-autolink-headings": "^7.1.0",
3739
"rehype-slug": "^6.0.0",
3840
"remark-toc": "^9.0.0",
3941
"sharp": "^0.34.2",
42+
"svelte": "^5.30.2",
4043
"tailwindcss": "^4.1.7",
4144
"typescript": "^5.8.3"
4245
},

0 commit comments

Comments
 (0)