Lanyards is a dedicated profile for researchers, built on the AT Protocol.
1import type { NextConfig } from 'next';
2
3const nextConfig: NextConfig = {
4 reactStrictMode: true,
5 images: {
6 remotePatterns: [
7 {
8 protocol: 'https',
9 hostname: 'cdn.bsky.app',
10 },
11 ],
12 },
13 // Externalize packages to avoid bundling test files and node-specific code
14 serverExternalPackages: [
15 'pino',
16 'thread-stream',
17 'sonic-boom',
18 '@atproto/common',
19 '@atproto/xrpc',
20 '@atproto/lexicon',
21 'multiformats',
22 ],
23 typescript: {
24 // Type checking is enabled, but ignore build errors for external packages
25 ignoreBuildErrors: false,
26 },
27};
28
29export default nextConfig;