next.config.ts 505 B

12345678910111213141516171819202122
  1. import { withPlausibleProxy } from "next-plausible";
  2. import { env } from "@/env";
  3. import type { NextConfig } from "next";
  4. const nextConfig: NextConfig = {
  5. /* config options here */
  6. reactStrictMode: true,
  7. images: {
  8. unoptimized: true,
  9. domains: ["lh3.googleusercontent.com", "192.168.1.12", "localhost", "www.facebook.com"],
  10. remotePatterns: [
  11. {
  12. protocol: "https",
  13. hostname: "**.vercel.app",
  14. },
  15. ],
  16. },
  17. };
  18. export default withPlausibleProxy()(nextConfig);