Skip to content

Commit 44f5006

Browse files
committed
fix: production build issue and adjust dependabot day
1 parent 50e5f7e commit 44f5006

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
version: 2
22
updates:
3-
- package-ecosystem: "npm"
4-
directory: "/"
3+
- package-ecosystem: 'npm'
4+
directory: '/'
55
schedule:
6-
interval: "weekly"
7-
day: "wednesday"
6+
interval: 'weekly'
7+
day: 'friday'
88
assignees:
9-
- "Zac-Zajdel"
9+
- 'Zac-Zajdel'
1010
labels:
11-
- "dependencies"
11+
- 'dependencies'

app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const fontSans = FontSans({
1313
variable: '--font-sans',
1414
});
1515

16-
export const META_URL =
16+
const META_URL =
1717
process.env.NODE_ENV !== 'production'
1818
? 'http://localhost:3000'
1919
: 'https://www.bookmarkoasis.com';

auth.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import Google from 'next-auth/providers/google';
77
export const { handlers, signIn, signOut, auth } = NextAuth({
88
adapter: PrismaAdapter(prisma),
99
session: { strategy: 'jwt' },
10+
trustHost: true,
1011
providers: [
1112
Google({
1213
clientId: process.env.AUTH_GOOGLE_ID,

0 commit comments

Comments
 (0)