initial commit
Some checks failed
Build and Deploy / build-and-deploy (push) Has been cancelled

This commit is contained in:
cjh
2026-06-01 16:24:47 +08:00
commit 988d77d16f
1388 changed files with 308133 additions and 0 deletions

14
build/plugins/copy.ts Normal file
View File

@@ -0,0 +1,14 @@
import type { PluginOption } from 'vite';
import { viteStaticCopy } from 'vite-plugin-static-copy';
/** 配置静态资源复制 */
export function setupCopyPlugin(): PluginOption {
return viteStaticCopy({
targets: [
{
src: 'packages/tinymce/dist/*',
dest: 'assets'
}
]
});
}