Skip to content

Commit 02d34de

Browse files
committed
third commit
1 parent 4e64b6f commit 02d34de

File tree

4 files changed

+4788
-148
lines changed

4 files changed

+4788
-148
lines changed

app/page.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import Image from "next/image";
22
import styles from "./page.module.css";
33

44
export default function Home() {
5+
56
return (
67
<div className={styles.page}>
78
<main className={styles.main}>

next.config.ts

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
import type { NextConfig } from "next";
22

3-
const nextConfig: NextConfig = {
4-
/* config options here */
5-
};
3+
const nextConfig = {
4+
// ...
5+
// Your existing config
6+
experimental: {
7+
instrumentationHook: true,
8+
serverComponentsExternalPackages: ['@middleware.io/agent-apm-nextjs']
9+
}
10+
}
611

12+
module.exports = nextConfig
713
export default nextConfig;

0 commit comments

Comments
 (0)