Skip to content

Commit 3529620

Browse files
rickstaaRoaring30sclaude
authored
fix: add meta description and enable production source maps (#600)
Add meta description for SEO to resolve Lighthouse warning. Enable production source maps for better debugging and to resolve Lighthouse Best Practices warning for large first-party JavaScript. Extracted from #509. Co-authored-by: Sebastian <115311276+Roaring30s@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent b7aec3c commit 3529620

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

next.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
3+
productionBrowserSourceMaps: true,
4+
35
turbopack: {
46
rules: {
57
"*.svg": {

pages/_app.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ function App({ Component, pageProps, fallback = null }) {
3939
<>
4040
<Head>
4141
<meta name="viewport" content="width=device-width, initial-scale=1" />
42+
<meta
43+
name="description"
44+
content="Explore Livepeer network statistics, orchestrators, delegators, and protocol data. Track performance, stake, and earnings on the Livepeer decentralized video infrastructure network."
45+
/>
4246
<title>Livepeer Explorer</title>
4347
</Head>
4448

0 commit comments

Comments
 (0)