Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/avin/vite-plugin-localhost-certs


https://github.com/avin/vite-plugin-localhost-certs

Last synced: 1 day ago
JSON representation

Awesome Lists containing this project

README

        

# vite-plugin-localhost-certs

Use HTTPS [localhost-certs](https://github.com/avin/certs) in [Vite](https://vitejs.dev/).

## Install

```sh
npm install vite-plugin-localhost-certs
```

## Usage

vite.config.ts:

```js
import { defineConfig } from 'vite';
import localhostCerts from 'vite-plugin-localhost-certs';

export default defineConfig({
plugins: [
localhostCerts(),
],
});
```