supplier_central_frontend/fix.py
vickytechkey 420df528a6
All checks were successful
Beta CI/CD Pipeline / build-and-test (push) Successful in 58s
Beta CI/CD Pipeline / deploy-beta (push) Successful in 12s
configure API proxy to EC2 origin in CDK stack and remove hardcoded backend URL from config
2026-09-05 15:39:52 +05:30

5 lines
335 B
Python

with open('/home/vignesh/github/Tiproemail/aws_cdk/lib/betasupplier-site-stack.ts', 'r') as f:
content = f.read()
content = content.replace(' }\n errorResponses: [', ' },\n errorResponses: [')
with open('/home/vignesh/github/Tiproemail/aws_cdk/lib/betasupplier-site-stack.ts', 'w') as f:
f.write(content)