Skip to content

Commit c72d42e

Browse files
committed
stats
1 parent e1e447f commit c72d42e

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

astro.config.mjs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ import tailwind from "@astrojs/tailwind";
44
import react from "@astrojs/react";
55
import mdx from "@astrojs/mdx";
66
import vercel from '@astrojs/vercel/static';
7+
import vercel from '@astrojs/vercel/serverless';
78

89
export default defineConfig({
910
site: "http://dev.bbsshack.club",
10-
output: 'static',
11-
adapter: vercel(),
11+
output: 'server',
12+
adapter: vercel({
13+
webAnalytics: { enabled: true }
14+
}),
1215
markdown: {
1316
smartypants: true,
1417
syntaxHighlight: "shiki",

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"license": "MIT",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/saumilthecode/bbsshackclub"
10+
"url": "https://github.com/saumilthecode/BBSSHack-Revamped"
1111
},
1212
"homepage": "https://bbsshack.club/",
1313
"scripts": {
@@ -45,7 +45,7 @@
4545
"@radix-ui/react-toggle": "^1.1.0",
4646
"@types/react": "^18.3.11",
4747
"@types/react-dom": "^18.3.1",
48-
"@vercel/analytics": "^1.3.1",
48+
"@vercel/analytics": "^1.3.2",
4949
"astro": "^4.16.10",
5050
"class-variance-authority": "^0.7.0",
5151
"clsx": "^2.1.1",

src/components/core/Footer.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const { class: className } = Astro.props;
2121
class="font-medium underline underline-offset-4">Saumil</a
2222
>. The source code is available on
2323
<a
24-
href="https://github.com/saumilthecode/bbsshackclub"
24+
href="https://github.com/saumilthecode/BBSSHack-Revamped"
2525
target="_blank"
2626
rel="noreferrer"
2727
class="font-medium underline underline-offset-4">GitHub</a

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export const SITE = {
66
desc: "Official Website of THE BBSS Hack Club",
77
title: "BBSS Hack Club",
88
ogImage: "logo.webp",
9-
repo: "https://github.com/saumilthecode/bbsshackclub",
9+
repo: "https://github.com/saumilthecode/BBSSHack-Revamped",
1010
};
1111

1212
export const LOCALE = {

0 commit comments

Comments
 (0)