Skip to content

Commit

Permalink
refactor: clean things up
Browse files Browse the repository at this point in the history
  • Loading branch information
lewxdev committed Aug 27, 2024
1 parent 6d1116f commit 994bcf1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
.next
out

# typescript
*.tsbuildinfo
next-env.d.ts

# serwist
public/sw*
public/swe-worker*

# typescript
*.tsbuildinfo
next-env.d.ts
2 changes: 1 addition & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const metadata: Metadata = {
title: app.NAME,
statusBarStyle: "default",
},
metadataBase: new URL(process.env["BASE_URL"]!),
metadataBase: app.URL,
openGraph: {
title: app.NAME,
description: app.DESCRIPTION,
Expand Down
2 changes: 1 addition & 1 deletion app/utils/const.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const app = {
NAME: "mmmines!",
DESCRIPTION: "an endless, massive multiplayer minesweeper game",
URL: "https://mmmines.fly.dev",
URL: new URL(process.env["BASE_URL"]!),
THEME_COLOR: "#020617",
};

0 comments on commit 994bcf1

Please sign in to comment.