Replies: 2 comments 2 replies
-
Beta Was this translation helpful? Give feedback.
1 reply
-
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am developing an app where I need a local SSL (self-signed) certificate.
The web server boots this way:
bin/rails s -b 'ssl://0.0.0.0:3000?key=config/ssl/abc.local.key&cert=config/ssl/abc.local.crt'
(so I can access the site locally at
https://abc.local:3000
)Can I start Vite at
https://abc.local:3036
?the problem with current my setup is that the vite tag helpers pull in relative paths, which are looking for vite dev at https://abc.local:3036/ but it isn't running there (what I have in the Procfile.dev for vite is the standard
bin/vite dev
)Beta Was this translation helpful? Give feedback.
All reactions