Standard.site landing page built in Next.js
0
fork

Configure Feed

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

Add trailingSlash for static export compatibility

+1
+1
next.config.ts
··· 3 3 4 4 const nextConfig: NextConfig = { 5 5 output: 'export', 6 + trailingSlash: true, 6 7 pageExtensions: ['js', 'jsx', 'md', 'mdx', 'ts', 'tsx'], 7 8 }; 8 9