dashboard-icons/web/next.config.ts

11 lines
157 B
TypeScript
Raw Normal View History

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