fix: 打包 BUG

This commit is contained in:
草鞋没号 2021-02-18 17:29:45 +08:00
parent dc758b0521
commit a6dd5d1ad7
3 changed files with 5 additions and 2 deletions

View File

@ -55,6 +55,7 @@
]
}
```
- main 进程中暂时无法用 require打包后会导致模块找不到 `21-02-18`
## 总结

View File

@ -1,10 +1,11 @@
/**
* electron
*/
require('dotenv').config({ path: join(__dirname, '../../.env') })
import { join } from 'path'
import { app, BrowserWindow } from 'electron'
import dotenv from 'dotenv'
dotenv.config({ path: join(__dirname, '../../.env') })
let win: BrowserWindow

View File

@ -10,6 +10,7 @@ import { cjs2esm } from './script/utils'
export default defineConfig({
plugins: [vue()],
root: join(__dirname, 'src/render'),
base: './', // index.html 中静态资源加载位置
server: {
port: +process.env.PORT,
},