UNPKG

vite-plugin-cloud-upload

Version:

A Vite plugin to automatically upload build assets to cloud storage (Tencent Cloud COS & Aliyun OSS).

9 lines (8 loc) 257 B
/** * 云厂商上传插件(Vite 专用) * 支持:腾讯云 COS、阿里云 OSS */ import type { Plugin } from 'vite'; import type { Options } from './types.js'; /** 插件工厂 */ export default function cloudUploadPlugin(opts: Options): Plugin;