Files
alixz.ovh/next.config.ts
2026-02-25 21:15:24 +01:00

12 lines
186 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'export',
trailingSlash: true,
images: {
unoptimized: true
}
};
export default nextConfig;