dashboard-icons/web/next.config.ts
Thomas Camlong bfe293f090
feat: Add website (#1157)
Co-authored-by: Bjorn Lammers <bjorn@lammers.media>
2025-04-16 16:18:20 +02:00

11 lines
157 B
TypeScript

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