15 lines
326 B
TypeScript
15 lines
326 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: 'standalone',
|
|
transpilePackages: ['react-icons'],
|
|
images: {
|
|
remotePatterns: [
|
|
{ protocol: 'https', hostname: '**.ytimg.com' },
|
|
{ protocol: 'https', hostname: 'img.youtube.com' },
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|