mirror of
https://github.com/Snouzy/workout-cool.git
synced 2026-05-19 14:40:35 +00:00
23 lines
505 B
TypeScript
23 lines
505 B
TypeScript
import { withPlausibleProxy } from "next-plausible";
|
|
|
|
import { env } from "@/env";
|
|
|
|
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
reactStrictMode: true,
|
|
images: {
|
|
unoptimized: true,
|
|
domains: ["lh3.googleusercontent.com", "192.168.1.12", "localhost", "www.facebook.com"],
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "**.vercel.app",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
export default withPlausibleProxy()(nextConfig);
|