mirror of https://github.com/jeecgboot/jeecg-boot
14 lines
447 B
Vue
14 lines
447 B
Vue
const fs = require('fs-extra');
|
|
const path = require('path');
|
|
|
|
const sourceDir = path.join(__dirname, '../../src/views/super/airag/aiapp/chat/js'); // 源目录
|
|
const destDir = path.join(__dirname, '../../dist', 'chat'); // 目标目录
|
|
|
|
// 复制目录
|
|
fs.copy(sourceDir, destDir)
|
|
.then(() => {
|
|
console.log(`成功将 ${sourceDir} 复制到 ${destDir}`);
|
|
})
|
|
.catch(err => {
|
|
console.error(`复制目录失败: ${err.message}`);
|
|
}); |