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

15 lines
298 B
JavaScript
Raw Normal View History

2019-04-21 19:17:15 +09:00
const withTypescript = require("@zeit/next-typescript");
2019-04-23 17:34:03 +09:00
const withMDX = require("@zeit/next-mdx");
module.exports = [
[
withMDX({
extension: /\.mdx?$/
}),
{
pageExtensions: ["md", "mdx"]
}
],
[withTypescript]
].reduce((o, [f, a]) => f(Object.assign(o, a)), {});