Files
vtuber/apps/web/next.config.js

15 lines
245 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'picsum.photos',
},
],
},
};
module.exports = nextConfig;