figuring out icons and such

This commit is contained in:
talksik
2022-03-28 15:24:07 -04:00
parent d8cbc1532e
commit ea630a7fe9
3 changed files with 5 additions and 1 deletions
+3 -1
View File
@@ -19,7 +19,9 @@
"license": "MIT",
"config": {
"forge": {
"packagerConfig": {},
"packagerConfig": {
"icon": "./src/assets/1024x1024"
},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
Binary file not shown.
+2
View File
@@ -2,6 +2,7 @@ import { BrowserWindow, app, ipcMain } from "electron";
import Channels, { Dimensions } from "./electron/constants";
import { handleLogin } from "./electron/handleLogin";
import path from "path";
import store from "./electron/store";
// This allows TypeScript to pick up the magic constant that's auto-generated by Forge's Webpack
@@ -28,6 +29,7 @@ const createWindow = (): void => {
preload: MAIN_WINDOW_PRELOAD_WEBPACK_ENTRY,
sandbox: true,
},
icon: "./src/assets/1024x1024",
});
// and load the index.html of the app.