9 lines
165 B
TypeScript
9 lines
165 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
domains: ['lastfm.freetls.fastly.net'],
|
|
},
|
|
};
|
|
|
|
export default nextConfig; |