i hate netlify

This commit is contained in:
Maze Winther
2025-06-25 18:57:52 +02:00
parent ba14d65605
commit 0f343dfbda

View File

@ -1,8 +1,25 @@
# Build configuration
[build]
# Base directory - where Netlify installs dependencies and runs build
base = "../.."
# Publish directory - relative to base directory
publish = "apps/web/.next"
# Build command
command = "cd apps/web && npm run build"
# Next.js plugin
[[plugins]] [[plugins]]
package = "@netlify/plugin-nextjs" package = "@netlify/plugin-nextjs"
# Redirects for domain migration
[[redirects]] [[redirects]]
from = "https://appcut.app/*" from = "https://appcut.app/*"
to = "https://opencut.app/:splat" to = "https://opencut.app/:splat"
status = 301 status = 301
force = true force = true
# Functions directory
[functions]
directory = "apps/web/netlify/functions"