Skip to content

Commit bb52661

Browse files
committed
feat: configure static export and enhance SEO metadata for the website
1 parent 783a118 commit bb52661

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

website/app/layout.tsx

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,20 @@ const fontMono = JetBrains_Mono({
1616
});
1717

1818
export const metadata: Metadata = {
19+
metadataBase: new URL('https://flow.vyuh.tech'),
1920
title: {
2021
default: 'Vyuh Node Flow',
2122
template: '%s | Vyuh Node Flow',
2223
},
2324
description:
2425
'A flexible, high-performance node-based flow editor for Flutter applications.',
25-
icons: {
26-
icon: '/favicon.ico',
26+
openGraph: {
27+
type: 'website',
28+
locale: 'en_US',
29+
siteName: 'Vyuh Node Flow',
30+
},
31+
twitter: {
32+
card: 'summary_large_image',
2733
},
2834
};
2935

website/next.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const withMDX = createMDX();
55
/** @type {import('next').NextConfig} */
66
const config = {
77
reactStrictMode: true,
8+
output: 'export',
89
};
910

1011
export default withMDX(config);

0 commit comments

Comments
 (0)