diff --git a/example/vercel.json b/example/vercel.json index 225d4890..edd4aeb8 100644 --- a/example/vercel.json +++ b/example/vercel.json @@ -2,5 +2,12 @@ "$schema": "https://openapi.vercel.sh/vercel.json", "installCommand": "pnpm install", "buildCommand": "pnpm turbo run generate", - "outputDirectory": ".contented/.preview/out/" + "outputDirectory": ".contented/.preview/out/", + "rewrites": [ + { "source": "/", "destination": "/contented/about.html" }, + { + "source": "/:path*", + "destination": "/:path*.html" + } + ] } diff --git a/turbo.json b/turbo.json index ed08472d..f920c5cb 100644 --- a/turbo.json +++ b/turbo.json @@ -20,6 +20,7 @@ "dependsOn": ["^build"] }, "generate": { + "cache": false, "inputs": ["**/.md"], "dependsOn": ["build"] },