Skip to content

Commit 1252ae0

Browse files
committed
Add solidjs integration
1 parent f60d249 commit 1252ae0

File tree

4 files changed

+490
-5
lines changed

4 files changed

+490
-5
lines changed

client/astro.config.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
import { defineConfig } from "astro/config";
2+
import solidJs from "@astrojs/solid-js";
23

34
// https://astro.build/config
4-
export default defineConfig({});
5+
export default defineConfig({
6+
integrations: [solidJs()],
7+
});

client/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
"astro": "astro"
1010
},
1111
"dependencies": {
12-
"astro": "^5.13.5"
12+
"astro": "^5.13.5",
13+
"solid-js": "^1.9.9"
1314
},
1415
"pnpm": {
1516
"onlyBuiltDependencies": [
@@ -23,6 +24,7 @@
2324
},
2425
"devDependencies": {
2526
"@astrojs/check": "^0.9.4",
27+
"@astrojs/solid-js": "^5.1.0",
2628
"typescript": "^5.9.2"
2729
}
2830
}

0 commit comments

Comments
 (0)