1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-31 06:18:07 +00:00
_/next.config.js

9 lines
197 B
JavaScript
Raw Normal View History

2019-07-09 15:46:11 +09:00
module.exports = require("@next/mdx")({
2020-06-11 20:59:34 +09:00
extension: /\.mdx?$/,
2019-07-09 15:46:11 +09:00
})({
2020-02-08 22:08:02 +09:00
pageExtensions: ["ts", "tsx", "md", "mdx"],
2020-06-11 22:10:26 +09:00
experimental: {
basePath: process.env.NEXT_PUBLIC_BASE_PATH || "",
},
2019-07-09 15:46:11 +09:00
});