Files
lobehub/next.config.js
2023-05-21 15:34:04 +08:00

10 lines
176 B
JavaScript

// @ts-check
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
pageExtensions: ['page.tsx', 'api.ts'],
};
module.exports = nextConfig;