- Changed wrapper settings in open-next.config.ts to use "cloudflare-node" and "cloudflare-edge". - Updated main entry point in wrangler.toml to point to ".open-next/worker.js". - Modified middleware to allow access to the speakers project path. - Added Space Grotesk font to layout.tsx for enhanced typography. - Improved media route handling by resolving parameters correctly in route.ts. - Adjusted ServiceCard component to use a more specific type for icon handling.
28 lines
536 B
TypeScript
28 lines
536 B
TypeScript
const config = {
|
|
default: {
|
|
override: {
|
|
wrapper: "cloudflare-node",
|
|
converter: "edge",
|
|
proxyExternalRequest: "fetch",
|
|
incrementalCache: "dummy",
|
|
tagCache: "dummy",
|
|
queue: "dummy",
|
|
},
|
|
},
|
|
edgeExternals: ["node:crypto"],
|
|
middleware: {
|
|
external: true,
|
|
override: {
|
|
wrapper: "cloudflare-edge",
|
|
converter: "edge",
|
|
proxyExternalRequest: "fetch",
|
|
incrementalCache: "dummy",
|
|
tagCache: "dummy",
|
|
queue: "dummy",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|
|
|