-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
42 lines (37 loc) · 1018 Bytes
/
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
const { join } = require('path');
const { createRemarkPlugin } = require('@atomiks/mdx-pretty-code');
const fs = require('fs');
const getTheme = (path) => JSON.parse(fs.readFileSync(require.resolve(path), 'utf-8'));
const prettyCode = createRemarkPlugin({
shikiOptions: {
theme: {
dark: getTheme('./src/assets/themes/OneDark-Pro.json'),
light: getTheme('./src/assets/themes/OneLight.json'),
},
},
});
const withMDX = require('@next/mdx')({
extension: /\.mdx?$/,
options: {
remarkPlugins: [prettyCode],
rehypePlugins: [],
},
});
/**
* @type {import('next').NextConfig}
**/
module.exports = withMDX({
assetPrefix: process.env.ASSET_PREFIX,
basePath: process.env.BASE_PATH,
pageExtensions: ['tsx', 'mdx'],
reactStrictMode: true,
sassOptions: { includePaths: [join(__dirname, 'src/assets/scss')] },
webpack(config) {
config.module.rules.push({
test: /\.svg$/i,
issuer: /\.[jt]sx?$/,
use: ['@svgr/webpack'],
});
return config;
},
});