fix(teable): point static symlink to nested static/static dir
Build process reorganizes apps/nestjs-backend/static/ creating a
nested static/static/{plugin,system} structure. The code resolves
paths like 'static/system/automation-robot.png' relative to cwd,
so the symlink must point to the inner static/ directory.
Adds fallback: checks for nested structure first, falls back to
direct path if not present.
This commit is contained in:
@@ -61,7 +61,11 @@ BACKEND_CACHE_SQLITE_URI=sqlite:///opt/teable/.assets/.cache.db
|
|||||||
NEXTJS_DIR=apps/nextjs-app
|
NEXTJS_DIR=apps/nextjs-app
|
||||||
EOF
|
EOF
|
||||||
ln -sf /opt/teable /app
|
ln -sf /opt/teable /app
|
||||||
ln -sf /opt/teable/apps/nestjs-backend/static /opt/teable/static
|
if [ -d "/opt/teable/apps/nestjs-backend/static/static" ]; then
|
||||||
|
ln -sf /opt/teable/apps/nestjs-backend/static/static /opt/teable/static
|
||||||
|
else
|
||||||
|
ln -sf /opt/teable/apps/nestjs-backend/static /opt/teable/static
|
||||||
|
fi
|
||||||
msg_ok "Configured Teable"
|
msg_ok "Configured Teable"
|
||||||
|
|
||||||
msg_info "Creating Service"
|
msg_info "Creating Service"
|
||||||
|
|||||||
Reference in New Issue
Block a user