13vaults/next.config.js

9 lines
219 B
JavaScript
Raw Normal View History

2023-02-02 23:01:13 +00:00
const { withContentlayer } = require("next-contentlayer");
2023-02-02 00:15:11 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
2023-02-02 23:01:13 +00:00
pageExtensions: ["ts", "tsx", "js", "jsx"],
};
2023-02-02 00:15:11 +00:00
2023-02-02 23:01:13 +00:00
module.exports = withContentlayer(nextConfig);