web/next.config.ts

19 lines
325 B
TypeScript
Raw Permalink Normal View History

2025-01-23 23:41:12 -05:00
import type { NextConfig } from "next"
2025-01-23 23:41:12 -05:00
/** @type {NextConfig} */
const nextConfig: NextConfig = {
2025-01-23 23:41:12 -05:00
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: "https",
hostname: "git.pontusmail.org",
port: "",
pathname: "**",
},
],
},
2025-01-23 23:41:12 -05:00
}
2025-01-23 23:41:12 -05:00
export default nextConfig