this repo has no description
1import { withPlausibleProxy } from "next-plausible";
2import { PLAUSIBLE_DOMAIN, USE_PLAUSIBLE } from "./src/lib/config";
3
4/** @type {import('next').NextConfig} */
5const nextConfig = {
6 images: {
7 remotePatterns: [
8 {
9 protocol: "https",
10 hostname: "oyster.us-east.host.bsky.network",
11 pathname: "/xrpc/com.atproto.sync.getBlob",
12 // search: '?did=did%3Aplc%3Ap2cp5gopk7mgjegy6wadk3ep&cid=**',
13 },
14 ],
15 },
16};
17
18if (USE_PLAUSIBLE) {
19 nextConfig = withPlausibleProxy({
20 customDomain: `https://${PLAUSIBLE_DOMAIN}`,
21 })(nextConfig);
22}
23
24export default nextConfig;