21 lines
352 B
JavaScript
21 lines
352 B
JavaScript
import nextra from "nextra";
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const NextConfig = {
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "cdn.sanity.io",
|
|
port: "",
|
|
},
|
|
],
|
|
},
|
|
};
|
|
|
|
const withNextra = nextra({
|
|
theme: "nextra-theme-docs",
|
|
themeConfig: "./theme.config.tsx",
|
|
});
|
|
|
|
export default withNextra(NextConfig);
|