mirror of
https://github.com/lobehub/lobehub.git
synced 2026-03-26 13:19:34 +07:00
10 lines
176 B
JavaScript
10 lines
176 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
pageExtensions: ['page.tsx', 'api.ts'],
|
|
};
|
|
|
|
module.exports = nextConfig;
|