Select the types of activity you want to include in your feed.
1/** @type {import('next').NextConfig} */ 2const nextConfig = { 3 typescript: { ignoreBuildErrors: true }, 4 eslint: { ignoreDuringBuilds: true }, 5 experimental: { 6 ppr: true, 7 }, 8}; 9 10module.exports = nextConfig;