jackmerrill.com/next.config.js

9 lines
144 B
JavaScript
Raw Permalink Normal View History

2023-05-20 20:04:14 -07:00
/** @type {import('next').NextConfig} */
2023-06-13 20:57:59 -07:00
const nextConfig = {
images: {
domains: ["cdn.sanity.io"],
},
};
2023-05-20 20:04:14 -07:00
2023-06-13 20:57:59 -07:00
module.exports = nextConfig;