You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would imagine there are some configs for changing the base path so that the configs could be at "https://some.ip/dolt-workbench/static/..." instead, but I could not find this config. I imagine I could build from source and change configs in "./web", but a parameter to be passed to the "docker run ..." step would be a better solution.
Thanks.
The text was updated successfully, but these errors were encountered:
Hi @JabDevs, it looks like we do need to provide a parameter to change the base path in the Next.js application. I will look into this today and keep you updated
Updating the base config is a little more complicated than I originally thought but I'm working on it. In the meantime you may be able to get around this by rewriting the url like this:
RewriteEngine On
RewriteRule ^/_next/(.*)$ /dolt-workbench/_next/$1 [P,L]
I have setup a proxy with apache2 with:
However, then connecting to "https://some.ip/dolt-workbench" just provides a blank, white page. There are console errors (404) for "https://some.ip/_next/static/...".
I would imagine there are some configs for changing the base path so that the configs could be at "https://some.ip/dolt-workbench/static/..." instead, but I could not find this config. I imagine I could build from source and change configs in "./web", but a parameter to be passed to the "docker run ..." step would be a better solution.
Thanks.
The text was updated successfully, but these errors were encountered: