1
0
Fork 0
mirror of https://github.com/homarr-labs/dashboard-icons.git synced 2025-07-06 19:24:53 +02:00
dashboard-icons/web/next.config.ts
Thomas Camlong bfe293f090
feat: Add website ()
Co-authored-by: Bjorn Lammers <bjorn@lammers.media>
2025-04-16 16:18:20 +02:00

10 lines
157 B
TypeScript

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