diff --git a/examples/playground15/app/from-app/page.tsx b/examples/playground15/app/from-app/page.tsx new file mode 100644 index 00000000..8575cec0 --- /dev/null +++ b/examples/playground15/app/from-app/page.tsx @@ -0,0 +1,29 @@ +"use client"; + +import Link from "next/link"; +import Image from "next/image"; +import testImage from "../../public/test.jpg"; + +export default function Page() { + return ( + <> +

hello app

+ test +

{process.env.NEXT_DEPLOYMENT_ID}

+ + + + other app + + + ); +} diff --git a/examples/playground15/app/other-app/page.tsx b/examples/playground15/app/other-app/page.tsx new file mode 100644 index 00000000..e0612dc8 --- /dev/null +++ b/examples/playground15/app/other-app/page.tsx @@ -0,0 +1,24 @@ +"use client"; +import testImage from "../../public/test.jpg"; +import Image from "next/image"; + +export default function Page() { + return ( + <> +

other app

+ test +

{process.env.NEXT_DEPLOYMENT_ID}

+ + + + ); +} diff --git a/examples/playground15/data.js b/examples/playground15/data.js new file mode 100644 index 00000000..0b42e924 --- /dev/null +++ b/examples/playground15/data.js @@ -0,0 +1,6 @@ +import styles from "./data.module.css"; + +export const data = { + now: Date.now(), + styles, +}; diff --git a/examples/playground15/data.module.css b/examples/playground15/data.module.css new file mode 100644 index 00000000..cd7bf1da --- /dev/null +++ b/examples/playground15/data.module.css @@ -0,0 +1,3 @@ +.wrap { + display: flex; +} diff --git a/examples/playground15/public/test.jpg b/examples/playground15/public/test.jpg new file mode 100644 index 00000000..d536c882 Binary files /dev/null and b/examples/playground15/public/test.jpg differ