| | |
| | | import { defineConfig } from 'vite'; |
| | | import vue from '@vitejs/plugin-vue'; |
| | | import electron from 'vite-plugin-electron'; |
| | | import { resolve } from 'path' |
| | | import { resolve } from 'path'; |
| | | import AutoImport from 'unplugin-auto-import/vite'; |
| | | import Components from 'unplugin-vue-components/vite'; |
| | | import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'; |
| | | |
| | | // https://vitejs.dev/config/ |
| | | export default defineConfig({ |
| | |
| | | electron({ |
| | | // 主进程入口文件 |
| | | entry: './src/background.js' |
| | | }) |
| | | }), |
| | | AutoImport({ |
| | | resolvers: [ElementPlusResolver()], |
| | | }), |
| | | Components({ |
| | | resolvers: [ElementPlusResolver()], |
| | | }), |
| | | |
| | | ], |
| | | /*开发服务器选项*/ |
| | | server: { |