mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 08:48:05 +00:00
16 lines
288 B
JavaScript
16 lines
288 B
JavaScript
const withNextra = require("nextra")({
|
|
theme: "nextra-theme-docs",
|
|
themeConfig: "./theme.config.tsx",
|
|
});
|
|
|
|
/**
|
|
* @type {import('next').NextConfig}
|
|
*/
|
|
const config = {
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
output: "export",
|
|
};
|
|
|
|
module.exports = withNextra(config);
|