vite-plugin-basic-ssl icon indicating copy to clipboard operation
vite-plugin-basic-ssl copied to clipboard

Basic https setup using an automatically generated self-signed certificate

Results 19 vite-plugin-basic-ssl issues
Sort by recently updated
recently updated
newest added
trafficstars

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) Welcome to [Renovate](https://togithub.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin. 🚦 To activate Renovate, merge this Pull Request....

Hello. Looks like the `cacheDir` option in Vite config file is broken. I feel like the `root` option has been forgotten. ```js { root: "./packages/application", cacheDir: ".cache" } ``` It...

we can't get cacheDir config before `config` hook; to keep the same with other steps, change `config` hook to `configResolved`, so that we can get the whole config

OS: Windows 11 ``` vite --https --host any-custom-host.dev --port 443 --mode multi --strictPort ``` vite.config.ts ``` export default defineConfig({ server: { https: true }, plugins: [vue(), basicSsl()], preview: { https:...

Hi, I am using the below pasted vite.config.js for vite. When adding "basicSsl()" as Plugin vite does not respond to requests anymore. It causes 100% cpu load (single threaded) and...

Add options to configure where needs ssl, for example: ```typescript ssl({ server: true, preview: true, }); ``` Or just checking config ```typescript const https = { cert: '', key: ''...

This PR addresses the Issue #9. The proposed solution respects the already defined user settings of `server` and `preview` to enable or disable the usage of the generated SSL certificate...

So after talking a bit with @userquin, I suggest adding two features: The first time the plugin is launched in a project, as the user where he wants to generate...

I get this error : > Uncaught (in promise) DOMException: Failed to register a ServiceWorker for scope ('https://127.0.0.1:5173/src/') with script ('https://127.0.0.1:5173/src/sw.ts'): An SSL certificate error occurred when fetching the script....