Skip to content

Commit

Permalink
stats
Browse files Browse the repository at this point in the history
  • Loading branch information
saumilthecode committed Nov 8, 2024
1 parent e1e447f commit c72d42e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
7 changes: 5 additions & 2 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ import tailwind from "@astrojs/tailwind";
import react from "@astrojs/react";
import mdx from "@astrojs/mdx";
import vercel from '@astrojs/vercel/static';
import vercel from '@astrojs/vercel/serverless';

export default defineConfig({
site: "http://dev.bbsshack.club",
output: 'static',
adapter: vercel(),
output: 'server',
adapter: vercel({
webAnalytics: { enabled: true }
}),
markdown: {
smartypants: true,
syntaxHighlight: "shiki",
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/saumilthecode/bbsshackclub"
"url": "https://github.com/saumilthecode/BBSSHack-Revamped"
},
"homepage": "https://bbsshack.club/",
"scripts": {
Expand Down Expand Up @@ -45,7 +45,7 @@
"@radix-ui/react-toggle": "^1.1.0",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vercel/analytics": "^1.3.1",
"@vercel/analytics": "^1.3.2",
"astro": "^4.16.10",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
Expand Down
2 changes: 1 addition & 1 deletion src/components/core/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const { class: className } = Astro.props;
class="font-medium underline underline-offset-4">Saumil</a
>. The source code is available on
<a
href="https://github.com/saumilthecode/bbsshackclub"
href="https://github.com/saumilthecode/BBSSHack-Revamped"
target="_blank"
rel="noreferrer"
class="font-medium underline underline-offset-4">GitHub</a
Expand Down
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const SITE = {
desc: "Official Website of THE BBSS Hack Club",
title: "BBSS Hack Club",
ogImage: "logo.webp",
repo: "https://github.com/saumilthecode/bbsshackclub",
repo: "https://github.com/saumilthecode/BBSSHack-Revamped",
};

export const LOCALE = {
Expand Down

0 comments on commit c72d42e

Please sign in to comment.