mirror of
https://github.com/oven-sh/bun
synced 2026-02-13 04:18:58 +00:00
minimize
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user