-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathnext.config.js
43 lines (39 loc) · 1.14 KB
/
next.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// const { remarkCodeHike } = require("@code-hike/mdx");
// const theme = require("shiki/themes/nord.json");
// const withNextra = require("nextra")({
// theme: "nextra-theme-docs",
// themeConfig: "./theme.config.js",
// unstable_staticImage: true,
// });
// const withMDX = require("@next/mdx")({
// extension: /\.mdx?$/,
// options: {
// remarkPlugins: [[remarkCodeHike, { theme }]],
// },
// });
// module.exports = withMDX({
// pageExtensions: ["ts", "tsx", "js", "jsx", "md", "mdx"],
// eslint: { ignoreDuringBuilds: true },
// });
const { remarkCodeHike } = require("@code-hike/mdx");
const theme = require("shiki/themes/material-ocean.json");
const withNextra = require("nextra")({
theme: "nextra-theme-docs",
themeConfig: "./theme.config.js",
mdxOptions: {
remarkPlugins: [
[
remarkCodeHike,
{ theme, staticMediaQuery: "not screen, (max-width: 1080px)" },
],
],
},
unstable_flexsearch: true,
unstable_staticImage: true,
// unstable_staticImage: true
});
module.exports = withNextra({
images: {
domains: ["pbs.twimg.com", "avatars.githubusercontent.com", "i.imgur.com"],
},
});