mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 01:48:43 +08:00
13 lines
243 B
Go
13 lines
243 B
Go
import { viteStaticCopy } from 'vite-plugin-static-copy'
|
|
|
|
export function setupStaticCopyPlugin() {
|
|
return viteStaticCopy({
|
|
targets: [
|
|
{
|
|
src: 'node_modules/monaco-editor/min/vs',
|
|
dest: 'assets'
|
|
}
|
|
]
|
|
})
|
|
}
|