flat: 暂存

This commit is contained in:
Apcallover
2025-10-27 17:54:11 +08:00
commit 2f0dd5ee86
49 changed files with 9553 additions and 0 deletions

37
electron.vite.config.ts Normal file
View File

@@ -0,0 +1,37 @@
import { resolve } from "path";
import {
defineConfig,
externalizeDepsPlugin,
bytecodePlugin,
} from "electron-vite";
import vue from "@vitejs/plugin-vue";
export default defineConfig({
main: {
plugins: [externalizeDepsPlugin(), bytecodePlugin()],
},
preload: {
plugins: [externalizeDepsPlugin(), bytecodePlugin()],
},
renderer: {
resolve: {
alias: {
"@renderer": resolve("src/renderer/src"),
},
},
server: {
port: 51730,
fs: {
strict: true,
},
// "proxy": {
// "/api": {
// target: "http://localhost:3000",
// changeOrigin: true,
// rewrite: (path) => path.replace(/^\/api/, ""),
// },
// },
},
plugins: [vue()],
},
});