This commit is contained in:
Alistair Smith
2025-09-15 21:13:45 -07:00
parent bb19610f0d
commit a64f073ad3

View File

@@ -1,13 +1,12 @@
import type * as Bake from "bun:app";
import { fileURLToPath } from "node:url";
import type { Framework } from "bun:app";
const framework: Bake.Framework = {
const framework: Framework = {
fileSystemRouterTypes: [
{
root: "pages",
prefix: "/",
clientEntryPoint: fileURLToPath(import.meta.resolve("./client.tsx")),
serverEntryPoint: fileURLToPath(import.meta.resolve("./server.tsx")),
clientEntryPoint: Bun.fileURLToPath(import.meta.resolve("./client.tsx")),
serverEntryPoint: Bun.fileURLToPath(import.meta.resolve("./server.tsx")),
extensions: [".tsx", ".jsx"],
style: "nextjs-pages",
layouts: true,