"use client"; import Link from "next/link"; export default function Home() { async function start() { const resp = await fetch( `${process.env.API_URL || "http://localhost:8000"}/start`, { method: "POST", mode: "cors", cache: "no-cache", credentials: "same-origin", headers: { "Content-Type": "application/json", }, body: JSON.stringify({}), } ); const data = await resp.json(); console.log(data); } return (
Test
start()}>Connect
); }