Skip to content

Commit

Permalink
update config and title
Browse files Browse the repository at this point in the history
  • Loading branch information
penleychan committed Jun 16, 2024
1 parent c8d5605 commit d8fd690
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
const isProd = process.env.NODE_ENV === 'production';

/**
* @type {import('next').NextConfig}
*/
Expand All @@ -10,7 +8,7 @@ const nextConfig = {
},
};

if (isProd) {
if (process.env.NODE_ENV === 'production') {
nextConfig = {
...nextConfig,
basePath: 'hueforge-td',
Expand Down
4 changes: 2 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ const fontSans = FontSans({
});

export const metadata: Metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
title: 'HueForge TD',
description: 'Community contributed Transmission Values for HueForge',
};

export default function RootLayout({
Expand Down

0 comments on commit d8fd690

Please sign in to comment.