RESTfulMC/Frontend/next.config.mjs

14 lines
200 B
JavaScript
Raw Normal View History

2024-04-15 13:16:08 -07:00
/** @type {import('next').NextConfig} */
2024-04-16 15:27:56 -07:00
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "mc.rainnny.club",
},
],
},
};
2024-04-15 13:16:08 -07:00
export default nextConfig;