this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 0bb039401a360beaf5a1c142b3f7d4df7045d862 24 lines 609 B view raw
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;