Replies: 1 comment 2 replies
-
You might need to inform the dev server about the base path. For example If you're using Webpack I think changing |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey there!
I have set up an Ubuntu 20.04 vServer with code-server 3.9.
Im using the authentication provided by the --link flag.
I want to access my live-preview devserver provided by vue.
When i access it with https://.cdr.co/absproxy/8101 it only loads the index.html which ends up as an empty white page. Same for /proxy/8101
In the console I get status 404 for every GET request.
I dont really understand the approach provided by the docs.
I hope someone can help me :)
my vue.config.js file:
module.exports = { devServer: { host: '0.0.0.0', allowedHosts: [ '.cdr.co', 'localhost-poopato.cdr.co' ] } };
Beta Was this translation helpful? Give feedback.
All reactions