fix: avoid duplicate container stdout logging

This commit is contained in:
whyour
2026-08-16 17:03:15 +08:00
parent 276dfc2382
commit 02e02491c4
3 changed files with 36 additions and 5 deletions
+2 -2
View File
@@ -10,8 +10,8 @@ module.exports = {
listen_timeout: 5000,
source_map_support: true,
time: !isContainer,
out_file: isContainer ? '/proc/1/fd/1' : undefined,
error_file: isContainer ? '/proc/1/fd/2' : undefined,
out_file: isContainer ? '/dev/null' : undefined,
error_file: isContainer ? '/dev/null' : undefined,
script: 'static/build/app.js',
env: {
http_proxy: '',