web/next.config.ts
Aidan 07ec59b7d4
All checks were successful
Build and Push Nightly CI Image / build_and_push (push) Successful in 1m1s
Build and Push Docker Image / build_and_push (push) Successful in 4s
bug fixes, migrate API endpoints to .env file, add todo
2025-02-16 17:31:45 -05:00

19 lines
325 B
TypeScript

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