horse-betting/btc-ui-app-2/node_modules/@vitejs/plugin-basic-ssl
2025-06-19 16:39:08 +05:30
..
dist UI for login page 2025-06-19 16:39:08 +05:30
LICENSE UI for login page 2025-06-19 16:39:08 +05:30
package.json UI for login page 2025-06-19 16:39:08 +05:30
README.md UI for login page 2025-06-19 16:39:08 +05:30

@vitejs/plugin-basic-ssl npm

A plugin to generate untrusted certificates which still allows to access the page after proceeding a wall with warning.

In most scenarios, it is recommended to generate a secure trusted certificate instead and use it to configure server.https

Usage

// vite.config.js
import basicSsl from '@vitejs/plugin-basic-ssl'

export default {
  plugins: [
    basicSsl({
      /** name of certification */
      name: 'test',
      /** custom trust domains */
      domains: ['*.custom.com'],
      /** custom certification directory */
      certDir: '/Users/.../.devServer/cert',
    }),
  ],
}

License

MIT