Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/avin/vite-plugin-localhost-certs
https://github.com/avin/vite-plugin-localhost-certs
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/avin/vite-plugin-localhost-certs
- Owner: avin
- Created: 2022-08-14T20:12:35.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-13T06:26:11.000Z (7 months ago)
- Last Synced: 2024-11-15T18:39:53.918Z (5 days ago)
- Language: TypeScript
- Size: 32.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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(),
],
});
```