mirror of
https://github.com/electron-vite/electron-vite-vue
synced 2025-09-04 05:34:41 +08:00
chore: 升级 vite@2.0
This commit is contained in:
@@ -3,7 +3,6 @@
|
||||
*/
|
||||
import { join } from 'path'
|
||||
import { app, BrowserWindow } from 'electron'
|
||||
import is_dev from 'electron-is-dev'
|
||||
import dotenv from 'dotenv'
|
||||
|
||||
dotenv.config({ path: join(__dirname, '../../.env') })
|
||||
@@ -21,9 +20,9 @@ function createWin() {
|
||||
},
|
||||
})
|
||||
|
||||
const URL = is_dev
|
||||
? `http://localhost:${process.env.PORT}` // vite 启动的服务器地址
|
||||
: `file://${join(__dirname, '../render/index.html')}` // vite 构建后的静态文件地址
|
||||
const URL = app.isPackaged
|
||||
? `file://${join(__dirname, '../render/index.html')}` // vite 构建后的静态文件地址
|
||||
: `http://localhost:${process.env.PORT}` // vite 启动的服务器地址
|
||||
|
||||
win?.loadURL(URL)
|
||||
}
|
||||
|
Reference in New Issue
Block a user