Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/hacksore/vite-plugin-caddy

⚡ A vite plugin to enable automagic HTTPS for local development with caddy server
https://github.com/hacksore/vite-plugin-caddy

caddyserver https vite vite-plugin

Last synced: 2 months ago
JSON representation

⚡ A vite plugin to enable automagic HTTPS for local development with caddy server

Awesome Lists containing this project

README

        

# vite-plugin-caddy

> [!WARNING]
> THIS PLUGIN IS HIGHLY EXPERIMENTAL AND UNSTABLE, USE WITH CAUTION

## Usage

```js
// vite.config.js
import { defineConfig } from "vite";
import caddyTls from "vite-plugin-caddy";

const config = defineConfig({
plugins: [
caddyTls({
domains: ["this.is.cool.localhost", "something-else.localhost"],
})
]
});

export default config;
```

Will give this in the terminal, allow you to connect to your app on HTTPS with a self-signed and trusted cert.
```
> vite

🔒 Caddy is running to proxy your traffic on https

🔗 Access your local servers
🌍 https://this.is.cool.localhost
🌍 https://something-else.localhost

```

## Contributing
See [CONTRIBUTING.md](./CONTRIBUTING.md) to see how to get started.

## License

MIT