This commit is contained in:
魏啾 2024-02-22 09:42:57 +08:00
parent 113bc4d730
commit b0828cc1c0
4 changed files with 3157 additions and 4 deletions

View File

@ -4,9 +4,9 @@ electron.app.whenReady().then(() => {
const win = new electron.BrowserWindow({
title: "Main window",
fullscreenable: true,
fullscreen: true,
fullscreen: false,
simpleFullscreen: true,
frame: false,
frame: true,
webPreferences: {
// 集成网页和 Node.js也就是在渲染进程中可以调用 Node.js 方法
nodeIntegration: true,

View File

@ -4,9 +4,9 @@ app.whenReady().then(() => {
const win = new BrowserWindow({
title: "Main window",
fullscreenable: true,
fullscreen: true,
fullscreen: false,
simpleFullscreen: true,
frame: false,
frame: true,
webPreferences: {
// 集成网页和 Node.js也就是在渲染进程中可以调用 Node.js 方法
nodeIntegration: true,

3152
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -17,6 +17,7 @@
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.5.0",
"electron": "^28.2.3",
"path": "^0.12.7",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",