web/next.config.ts
2025-04-23 00:21:31 -04:00

20 lines
349 B
TypeScript

import type { NextConfig } from "next"
/** @type {NextConfig} */
const nextConfig: NextConfig = {
reactStrictMode: true,
output: 'standalone',
images: {
remotePatterns: [
{
protocol: "https",
hostname: "git.pontusmail.org",
port: "",
pathname: "**",
},
],
},
}
export default nextConfig