Basic https setup using an automatically generated self-signed certificate
515
stars
115
commits
TypeScript
primary language
Sep 10, 2026
updated
A plugin to generate untrusted certificates which still allows to access the page after proceeding a wall with warning.
In most scenarios, it is recommended to generate a secure trusted certificate instead and use it to configure server.https
// vite.config.js
import basicSsl from '@vitejs/plugin-basic-ssl'
export default {
plugins: [
basicSsl({
/** name of certification */
name: 'test',
/** custom trust domains */
domains: ['*.custom.com'],
/** optional, days before certificate expires */
ttlDays: 30,
/** custom certification directory */
certDir: '/Users/.../.devServer/cert',
}),
],
}
MIT
TypeScript
89.2%
CSS
8.7%
HTML
2.1%
Basic https setup using an automatically generated self-signed certificate
515
stars
115
commits
TypeScript
primary language
Sep 10, 2026
updated
A plugin to generate untrusted certificates which still allows to access the page after proceeding a wall with warning.
In most scenarios, it is recommended to generate a secure trusted certificate instead and use it to configure server.https
// vite.config.js
import basicSsl from '@vitejs/plugin-basic-ssl'
export default {
plugins: [
basicSsl({
/** name of certification */
name: 'test',
/** custom trust domains */
domains: ['*.custom.com'],
/** optional, days before certificate expires */
ttlDays: 30,
/** custom certification directory */
certDir: '/Users/.../.devServer/cert',
}),
],
}
MIT
TypeScript
89.2%
CSS
8.7%
HTML
2.1%