mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-10-05 02:29:57 +08:00
11 lines
187 B
TypeScript
11 lines
187 B
TypeScript
/**
|
|
* @name ConfigSslPlugin
|
|
* @description 引入模拟 SSl 证书
|
|
*/
|
|
|
|
import basicSsl from '@vitejs/plugin-basic-ssl';
|
|
|
|
export const ConfigSslPlugin = () => {
|
|
return basicSsl();
|
|
};
|