20 lines
326 B
JavaScript
20 lines
326 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**',
|
|
},
|
|
{
|
|
protocol: 'http',
|
|
hostname: 'localhost',
|
|
port: '8001',
|
|
}
|
|
],
|
|
},
|
|
}
|
|
|
|
export default nextConfig;
|