mirror of
https://github.com/sergi0g/cup.git
synced 2025-11-08 13:13:49 -05:00
21 lines
352 B
TypeScript
21 lines
352 B
TypeScript
import nextra from "nextra";
|
|
|
|
const withNextra = nextra({
|
|
defaultShowCopyCode: true,
|
|
});
|
|
|
|
export default withNextra({
|
|
output: "export",
|
|
transpilePackages: ["geist"],
|
|
images: {
|
|
unoptimized: true,
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "raw.githubusercontent.com",
|
|
},
|
|
],
|
|
},
|
|
basePath: "",
|
|
});
|