Change output configuration from 'output' to 'export'

This commit is contained in:
Andras Bacsai
2025-09-16 10:25:57 +02:00
committed by GitHub
parent 3274847bed
commit 2842963ebf

View File

@@ -1,6 +1,6 @@
/** @type {import('next').NextConfig} */ /** @type {import('next').NextConfig} */
const nextConfig = { const nextConfig = {
output: 'output', output: 'export',
}; };
export default nextConfig; export default nextConfig;