Initial commit

This commit is contained in:
2025-09-22 11:51:16 +08:00
commit c32381f8ed
1191 changed files with 130140 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
const Path = require('path');
const vuePlugin = require('@vitejs/plugin-vue')
const { defineConfig } = require('vite');
/**
* https://vitejs.dev/config
*/
const config = defineConfig({
root: Path.join(__dirname, 'src', 'renderer'),
publicDir: Path.join(__dirname, 'public'),
server: {
port: 8083,
},
open: false,
build: {
outDir: Path.join(__dirname, 'build', 'renderer'),
emptyOutDir: true,
},
plugins: [vuePlugin()],
});
module.exports = config;