| 12345678910111213141516171819202122232425262728293031 |
- import type { NextConfig } from "next";
- const nextConfig: NextConfig = {
- eslint: {
- ignoreDuringBuilds: true, // 临时禁用构建时的 ESLint 检查
- },
- images: {
- remotePatterns: [
- {
- protocol: "http",
- hostname: "192.168.124.9",
- port: "8080",
- pathname: "/uploads/**",
- },
- {
- protocol: "http",
- hostname: "localhost",
- port: "8080",
- pathname: "/uploads/**",
- },
- {
- protocol: "http",
- hostname: "127.0.0.1",
- port: "8080",
- pathname: "/uploads/**",
- },
- ],
- },
- };
- export default nextConfig;
|