RESTfulMC/Frontend/next.config.mjs

14 lines
201 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",
2024-04-16 17:52:59 -07:00
hostname: "api.restfulmc.cc",
2024-04-16 15:27:56 -07:00
},
],
},
};
2024-04-15 13:16:08 -07:00
export default nextConfig;