feat(docker): update Dockerfile for standalone Next.js app and adjust build paths

This commit is contained in:
HouYunFei
2026-06-02 14:37:13 +08:00
parent 6413011e54
commit 965270b6e3
3 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
import "./.next/dev/types/routes.d.ts";
import "./.next/types/routes.d.ts";
// NOTE: This file should not be edited
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
+1
View File
@@ -14,6 +14,7 @@ export default function nextConfig(phase: string): NextConfig {
const releases = parseChangelog(localChangelog);
return {
output: "standalone",
allowedDevOrigins: isDev ? ["*.*.*.*"] : [],
typescript: {
ignoreBuildErrors: true,