Improve SEO and AI discovery

This commit is contained in:
achraf
2026-06-10 14:09:41 +02:00
parent 8e198bbc6b
commit 1cebdffda0
10 changed files with 709 additions and 21 deletions

View File

@@ -29,4 +29,9 @@ const [typecheckStatus, viteStatus] = await Promise.all([
if (typecheckStatus !== 0 || viteStatus !== 0) {
process.exitCode = 1;
} else {
const seoStatus = await run("scripts/generate-seo.mjs", []);
if (seoStatus !== 0) {
process.exitCode = 1;
}
}