forked from BabylonJS/Documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
32 lines (31 loc) · 887 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
// next.config.js
// const withSass = require("@zeit/next-sass");
const withMDX = require("@next/mdx")();
module.exports = withMDX(
{
sassOptions: {
includePaths: ["./styles"],
},
future: {
webpack5: 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;
// // },
// }),
);