serve
serve copied to clipboard
Static file serving and directory listing
Hi there! We have some Create React App users in https://github.com/facebook/create-react-app/issues/4680 using `serve` to host their production websites. They are experiencing different behavior between our development server and `serve` which...
Crash on symbolic dir links. OS: Linux 5.4.39-1-lts Node: v12.16.3 LTS ```sh mkdir /tmp/a && cd /tmp/a mkdir a b touch a/a1 b/b1 cd a ln -s /tmp/a/b . serve...
Suggestion: Add an option('-o --open' for example) to open browser window after starting the server
Hi, I really apprecite this server tool `you built, which has elegant ui in modern style. Especially `serve` won't treats `./public` under root directory as default serving path, this is...
Followon to https://github.com/vercel/serve/issues/319 Serve sends CORS headers, however the `Access-Control-Allow-Origin` header is `*` which is problematic because in certain requests, the browser blocks the `*` wildcard because of security or...
Hi, From what I can tell, the @zeit/schemas/deployment/config-static is being used as the validation schema for `serve` but this does not list `symlinks` as a supported option resulting in the...
Relative href attributes are not correctly resolved based on the configuration of `cleanUrls` and `trailingSlash` config. ## Scenario Files: - `/login/index.html` - `/login/login.ts.html` The index.html has an anchor tag linking...
Hi, I am using `serve.json` to set up security headers. Now that the `Feature-Policy` has changed to `Permissions-Policy` *and* has a new syntax this poses an issue. The header I...
Hi, Wasm files mime type should be application/wasm, This is why I can not use wasm files with serve. here is specification : https://www.w3.org/TR/wasm-web-api-1/ refs https://github.com/vercel/serve/issues/303 Regards S.Ancelot
It seems like the AirPlay Receiver process on macOS Monterrey uses ports 5000 (which seems to be the default for `serve`) and 7000: https://developer.apple.com/forums/thread/682332
We are using serve in a dockerfile like so: ```dockerfile RUN npm i -g serve CMD serve -s -l 5000 build ``` we want to add a header to all...