sojorn/admin/next.config.js
2026-02-15 00:33:24 -06:00

13 lines
314 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{ protocol: 'https', hostname: 'img.sojorn.net' },
{ protocol: 'https', hostname: 'quips.sojorn.net' },
{ protocol: 'https', hostname: 'api.sojorn.net' },
],
},
};
module.exports = nextConfig;