blueskychan.dev/next.config.js

15 lines
232 B
JavaScript
Raw Permalink Normal View History

2023-12-22 13:59:04 +07:00
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
2023-12-22 13:59:04 +07:00
}
module.exports = nextConfig