add http-server part 5.5
All checks were successful
ci / build (push) Successful in 1m33s

This commit is contained in:
Christopher Hase 2025-04-09 14:27:03 +02:00
parent 365d40dae5
commit 94c21a6146
2 changed files with 5 additions and 3 deletions

View file

@ -12,7 +12,7 @@ spec:
http: http:
paths: paths:
- path: /iching(/|$)(.*) - path: /iching(/|$)(.*)
pathType: Prefix pathType: ImplementationSpecific
backend: backend:
service: service:
name: iching-service name: iching-service

View file

@ -1,8 +1,10 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES6", "target": "ES6",
"module": "CommonJS", "module": "ES6",
"moduleResolution": "Bundler",
"outDir": "dist", "outDir": "dist",
"strict": true "strict": true,
"esModuleInterop": true
} }
} }