RESTfulMC/Frontend/next.config.mjs

14 lines
201 B
JavaScript
Raw Normal View History

2024-04-15 16:16:08 -04:00
/** @type {import('next').NextConfig} */
2024-04-16 18:27:56 -04:00
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
2024-04-16 20:52:59 -04:00
hostname: "api.restfulmc.cc",
2024-04-16 18:27:56 -04:00
},
],
},
};
2024-04-15 16:16:08 -04:00
export default nextConfig;