Files
burmddit/frontend/next.config.js

17 lines
255 B
JavaScript

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