We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.loading CSS rule should not be applied to the list of parameters and variables:
.loading
Set your nginx config to something like this:
nginx
http { upstream legislation-explorer { server localhost:2030; } server { listen 80; server_name localhost; location ~/legislation(.*)$ { proxy_pass http://legislation-explorer$1; proxy_set_header Host $http_host; proxy_http_version 1.1; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } } }
Then run:
npm install npm run clean npm run build npm start
And visit http://localhost/legislation
http://localhost/legislation
The text was updated successfully, but these errors were encountered:
This is really weird:
For the France instance, I cannot reproduce the bug for:
Incognito mode doesn't change anything.
However, for the new Demo instance, I experience the bug will all the exact same browsers 😲 .
The two instances are served by the same version of the legislation explorer, with the same version of node, and have the same package-lock.json.
package-lock.json
Even weirder, others (@sandcha, @maukoquiroga) experience the bug on the France instance too 😱
Sorry, something went wrong.
More strangeness:
Going to a variable page, and coming back to the home page, seems to temporarily fix the issue.
This doesn't seem fully deterministic...
bonjourmauko
No branches or pull requests
.loading
CSS rule should not be applied to the list of parameters and variables:Reproduce it locally
Set your
nginx
config to something like this:Then run:
And visit
http://localhost/legislation
The text was updated successfully, but these errors were encountered: