24 lines
514 B
JavaScript
24 lines
514 B
JavaScript
/** @type {import("next").NextConfig} */
|
|
const nextConfig = {
|
|
pageExtensions: ["js", "jsx", "mdx", "ts", "tsx"],
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "**"
|
|
}
|
|
]
|
|
},
|
|
async rewrites() {
|
|
return [
|
|
{ source: "/rss", destination: "/feed" },
|
|
{ source: "/rss.xml", destination: "/feed.xml" },
|
|
{ source: "/feed.xml", destination: "/feed" },
|
|
|
|
{ source: "/p/:id", destination: "/posts/:id" }
|
|
];
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|