Skip to content

Commit 5ef0d70

Browse files
add svelte, make sponsors sort randomly by hydration
1 parent e516b9d commit 5ef0d70

File tree

9 files changed

+273
-47
lines changed

9 files changed

+273
-47
lines changed

astro.config.mjs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import { defineConfig } from "astro/config";
22
import tailwind from "@astrojs/tailwind";
3-
43
import mdx from "@astrojs/mdx";
54

5+
import svelte from "@astrojs/svelte";
6+
67
// https://astro.build/config
78
export default defineConfig({
8-
integrations: [tailwind(), mdx()],
9-
site: "https://2023.nixcon.org",
10-
});
9+
integrations: [tailwind(), mdx(), svelte()],
10+
site: "https://2023.nixcon.org"
11+
});

package-lock.json

Lines changed: 212 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,16 @@
1212
},
1313
"dependencies": {
1414
"@astrojs/mdx": "^0.19.4",
15+
"@astrojs/svelte": "^4.0.1",
1516
"@astrojs/tailwind": "^5.0.0",
1617
"@fontsource/roboto": "^5.0.0",
1718
"astro": "^3.0.10",
1819
"marked": "^7.0.5",
1920
"node-fetch": "^3.3.2",
21+
"svelte": "^4.2.0",
2022
"tailwindcss": "^3.3.2"
2123
},
2224
"devDependencies": {
23-
"@tailwindcss/typography": "^0.5.9"
25+
"@tailwindcss/typography": "^0.5.10"
2426
}
2527
}

src/components/common/Sponsors/Sponsor.astro

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)