Test new deployment strategy
Some checks failed
Build and Deploy Astro Site / deploy (push) Failing after 50s

This commit is contained in:
2025-09-09 23:53:21 +02:00
parent 21ea6d26ac
commit 1e95de21f7
7 changed files with 34 additions and 29 deletions

View File

@@ -1,7 +1,12 @@
import type { NextConfig } from "next";
import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
/* config options here */
};
...(process.env.NODE_ENV === 'production' && {
output: 'export',
images: { unoptimized: true },
trailingSlash: true,
}),
}
export default nextConfig;
export default nextConfig