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