This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import child_process from 'node:child_process'; | |
import fs from 'node:fs'; | |
import path from 'node:path'; | |
import type { Plugin, ResolvedConfig } from 'vite'; | |
/** | |
* Vite plugin to generate and configure HTTPS certificates from dotnet | |
* | |
* Add ./local-certs to your .gitignore | |
*/ |