Please provide us with the following information:
This issue is for a: (mark with an x)
- [x] bug report -> please search issues before submitting
- [ ] feature request
- [ ] documentation issue or request
- [x] regression (a behavior that used to work and stopped in a new release)
Minimal steps to reproduce
follow the steps given
Any log messages given by the failure
Invalid options object. Dev Server has been initialized using an options object that does not match the API schema.
- options.allowedHosts[0] should be a non-empty string.
Expected/desired behavior
That it works
OS and Version?
Windows 11
Versions
Mention any other details that might be useful
Deleting the proxy line in package.json or modifying it to
"options": {
"allowedHosts": ["localhost", ".localhost"],
"proxy": "http://localhost:3001"
}
opens the webpage but returns the error
FATAL_ERROR: <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Error</title> </head> <body> <pre>Cannot GET /api/get-speech-token</pre> </body> </html>
or modifying the env file instead to include
DANGEROUSLY_DISABLE_HOST_CHECK=true
Opens the webpage but instead returns
FATAL_ERROR: Proxy error: Could not proxy request /api/get-speech-token from localhost:3000 to http://localhost:3001/ (ECONNREFUSED).
Thanks! We'll be in touch soon.
This issue is for a: (mark with an
x)Minimal steps to reproduce
Any log messages given by the failure
Expected/desired behavior
OS and Version?
Versions
Mention any other details that might be useful
Deleting the proxy line in package.json or modifying it to
opens the webpage but returns the error
or modifying the env file instead to include
Opens the webpage but instead returns