mhsf-dev/next.config.mjs

25 lines
450 B
JavaScript
Raw Permalink Normal View History

2024-09-03 23:56:15 -05:00
import { withContentlayer } from "next-contentlayer";
2024-05-31 16:22:34 -05:00
/** @type {import('next').NextConfig} */
2024-07-23 18:49:21 -05:00
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "img.clerk.com",
},
],
},
2024-09-03 23:56:15 -05:00
async redirects() {
return [
{
source: '/docs',
destination: '/docs/getting-started',
permanent: true,
},
]
},
2024-07-23 18:49:21 -05:00
};
2024-05-31 16:22:34 -05:00
2024-09-03 23:56:15 -05:00
export default withContentlayer(nextConfig);