mirror of
https://github.com/MatrixSeven/file-transfer-go.git
synced 2026-02-04 03:25:03 +08:00
9 lines
188 B
TypeScript
9 lines
188 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
reactStrictMode: false, // 关闭 React 严格模式
|
|
/* config options here */
|
|
};
|
|
|
|
export default nextConfig;
|