jackmerrill.com/next.config.js

18 lines
360 B
JavaScript
Raw 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-07-19 19:09:21 -07:00
async redirects() {
return [
{
source: "/.well-known/matrix/:slug*",
destination: "https://matrix.jackmerrill.com/.well-known/matrix/:slug*",
permanent: true,
},
];
},
2023-06-13 20:57:59 -07:00
};
2023-05-20 20:04:14 -07:00
2023-06-13 20:57:59 -07:00
module.exports = nextConfig;