Ecosyste.ms: Awesome

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

https://github.com/rspack-contrib/rsbuild-plugin-basic-ssl

An Rsbuild plugin to generate an untrusted, self-signed certificate for the HTTPS server.
https://github.com/rspack-contrib/rsbuild-plugin-basic-ssl

rsbuild rsbuild-plugin rspack

Last synced: 9 days ago
JSON representation

An Rsbuild plugin to generate an untrusted, self-signed certificate for the HTTPS server.

Lists

README

        

# @rsbuild/plugin-basic-ssl

Generate an untrusted, self-signed certificate for the HTTPS server.

The Basic SSL plugin will automatically generate a self-signed certificate and set the [server.https](https://rsbuild.dev/config/server/https) option. When you visit the page, your browser will indicate that the certificate is not trusted. You can access the HTTPS page after manually confirming this.



npm version

license

## Usage

Install:

```bash
npm add @rsbuild/plugin-basic-ssl -D
```

Add plugin to your `rsbuild.config.ts`:

```ts
// rsbuild.config.ts
import { pluginBasicSsl } from "@rsbuild/plugin-basic-ssl";

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

Then visit the https URL of the page, and confirm in your browser.

## License

[MIT](./LICENSE).