M. Heide
M. Heide
Just encountered this bug in the wild... Why is nobody merging this PR? ``` tail -1 /etc/lsb-release && node --version && npm --version && npm ci --only=development DISTRIB_DESCRIPTION="Ubuntu 18.04.1 LTS"...
`npm` seems to use `libcipm`: https://github.com/npm/cli/blob/latest/package.json The CLI package `cipm` has only 600 weekly downloads. So it doesn't seem relevant for practical use nowadays. https://www.npmjs.com/package/cipm
The fix might be to merge this PR: https://github.com/zkat/cipm/pull/60 Other issue, slightly related: `NODE_ENV=development npm ci` installs everything. I would expect it to install only devDependencies. (node v10.15.1, npm 6.7.0)
@aareet sure, take your time 😄
It's great that Auth0 has a Terraform provider. However I'd rather wait for version 1.0 before starting to use it. Version 0.29.0 sounds to me like "not ready for production...
@jingping-ye the following should work (assuming your `index.html` is in the root folder). Doesn't it work for you? ``` { "rewrites": [ { "source": "myProject/**", "destination": "/index.html" } ] }...
You might need a soution like Loggly or Sentry.io. Or add a logging route to your own API (which e.g. just pipes through the the request body to stdout).
@ionutcirja if the rewrite sources are non-overlapping, it seems to work. (Not sure if this helps in your case...) This worked for me as expected: ``` { "cleanUrls": false, "rewrites":...
@MGraefe have you looked at the code? This should work: * Bash: `NO_UPDATE_CHECK=1 npx serve [options...]` * Windows Cmd: `set NO_UPDATE_CHECK=1` `npx serve [options...]` https://github.com/vercel/serve/blob/master/bin/serve.js#L400
You could consider as a temp solution to use e.g. Caddy as entry point / reverse proxy: https://caddyserver.com/docs/caddyfile/patterns#reverse-proxy ``` /--> /app/... (npx serve) request -> Caddy proxy \--> /api1/... (e.g....