next.config.mjs
1/** @type {import('next').NextConfig} */
2const nextConfig = {
3 images: {
4 remotePatterns: [
5 {
6 protocol: 'https',
7 hostname: 'spotify-recently-played-readme.vercel.app',
8 port: '',
9 pathname: '/api',
10 },
11 {
12 protocol: 'https',
13 hostname: 'cdn.bsky.app',
14 },
15 ],
16 dangerouslyAllowSVG: true,
17 },
18 experimental: {
19 turbo: {
20 rules: {
21 '*.txt': ['raw-loader'],
22 },
23 },
24 },
25}
26
27export default nextConfig
28