2026-07-30 12:06:41 +08:00
|
|
|
import type { NextConfig } from "next";
|
|
|
|
|
|
|
|
|
|
const nextConfig: NextConfig = {
|
2026-08-11 23:07:26 +08:00
|
|
|
output: "standalone",
|
2026-08-15 03:53:09 +08:00
|
|
|
serverExternalPackages: ["mysql2", "sharp"],
|
2026-08-20 15:16:18 +08:00
|
|
|
allowedDevOrigins: ["192.168.30.90", "localhost", "127.0.0.1"],
|
2026-07-30 12:06:41 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|