spawner/user-template-next/next.config.mjs
2026-01-30 18:00:41 +01:00

11 lines
176 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
trailingSlash: true,
images: {
unoptimized: true,
},
};
export default nextConfig;