1. (聚合推文)MJ反推、SD反推 添加剪映分镜 2. (聚合推文)完善SD反推分类(界面同MJ反推,些许不一致) 3. (聚合推文)完成一键合成视频(单个和批量) 4. 修改聚合推文进入界面小说批次任务表格样式 5. (聚合推文)完善一键重置 6. (聚合推文)完善一键删除
26 lines
686 B
JavaScript
26 lines
686 B
JavaScript
import { resolve } from 'path'
|
|
import { defineConfig, externalizeDepsPlugin, bytecodePlugin } from 'electron-vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import Jsx from '@vitejs/plugin-vue-jsx'
|
|
import tsconfigPaths from 'vite-tsconfig-paths';
|
|
|
|
export default defineConfig({
|
|
main: {
|
|
plugins: [externalizeDepsPlugin(), bytecodePlugin(),tsconfigPaths()]
|
|
},
|
|
discord: {
|
|
plugins: [externalizeDepsPlugin(), bytecodePlugin(),tsconfigPaths()]
|
|
},
|
|
preload: {
|
|
plugins: [externalizeDepsPlugin(), bytecodePlugin(),tsconfigPaths()]
|
|
},
|
|
renderer: {
|
|
resolve: {
|
|
alias: {
|
|
'@renderer': resolve('src/renderer/src')
|
|
}
|
|
},
|
|
plugins: [vue(), Jsx()]
|
|
}
|
|
})
|