1
0
Fork 0
mirror of https://github.com/kou029w/_.git synced 2025-01-30 22:08:02 +00:00
_/next.config.js
2019-04-23 17:34:03 +09:00

14 lines
298 B
JavaScript

const withTypescript = require("@zeit/next-typescript");
const withMDX = require("@zeit/next-mdx");
module.exports = [
[
withMDX({
extension: /\.mdx?$/
}),
{
pageExtensions: ["md", "mdx"]
}
],
[withTypescript]
].reduce((o, [f, a]) => f(Object.assign(o, a)), {});