18 lines
448 B
TOML
18 lines
448 B
TOML
# Cloudflare Workers configuration for Next.js
|
|
name = "biohazard-vfx-website"
|
|
compatibility_date = "2024-09-23"
|
|
compatibility_flags = ["nodejs_compat"]
|
|
main = ".open-next/worker.js"
|
|
|
|
# Custom domains
|
|
routes = [
|
|
{ pattern = "biohazardvfx.com/*", zone_name = "biohazardvfx.com" },
|
|
{ pattern = "www.biohazardvfx.com/*", zone_name = "biohazardvfx.com" }
|
|
]
|
|
|
|
# Assets binding for OpenNext
|
|
[assets]
|
|
directory = ".open-next/assets"
|
|
binding = "ASSETS"
|
|
|