stock-portfolio_byQwen3.6/next.config.ts

13 lines
327 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
allowedDevOrigins: [
'10.10.10.1', // 允许该IP访问
// 'your-custom-domain.dev', // 如果有自定义域名也可以加在这里
// '*.local-origin.dev' // 支持通配符
],
};
export default nextConfig;