forked from BabylonJS/Documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
39 lines (38 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
// next.config.js
// const withSass = require("@zeit/next-sass");
const withMDX = require("@next/mdx")();
module.exports = withMDX(
{
sassOptions: {
includePaths: ["./styles"],
},
staticPageGenerationTimeout: 150,
async redirects() {
return [
{
source: '/typedoc',
destination: '/typedoc/modules/BABYLON', // Matched parameters can be used in the destination
permanent: true,
},
]
},
},
// withSass({
// sassLoaderOptions: {
// sassOptions: {
// includePaths: ["./styles"],
// },
// },
// // cssModules: true,
// // cssLoaderOptions: {
// // importLoaders: 2,
// // localIdentName: "[local]___[hash:base64:5]",
// // },
// // webpack: (config, { isServer }) => {
// // // if (isServer) {
// // // require("./lib/buildUtils/sitemap");
// // // }
// // return config;
// // },
// }),
);