vite-plugin-localhost-certs
v1.1.3
Published
HTTPS certs for localhost vite dev-server
Downloads
19
Readme
vite-plugin-localhost-certs
Use HTTPS localhost-certs in Vite.
Install
npm install vite-plugin-localhost-certs
Usage
vite.config.ts:
import { defineConfig } from 'vite';
import localhostCerts from 'vite-plugin-localhost-certs';
export default defineConfig({
plugins: [
localhostCerts(),
],
});