DEL: Remove .vite files from VCS
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 4.2 KiB |
File diff suppressed because one or more lines are too long
@@ -1 +0,0 @@
|
||||
"use strict";const{contextBridge:i,ipcRenderer:o}=require("electron");i.exposeInMainWorld("nanodevices",{list(){o.invoke("nanodevices:list")},connect(e){o.invoke("nanodevices:connect",e)},disconnect(){o.invoke("nanodevices:disconnect")},on_device_attached(e){o.on("nanodevice-attached",(c,n)=>e(n))},on_device_detached(e){o.on("nanodevice-detached",(c,n)=>e(n))}});i.exposeInMainWorld("nanodevice",{get_value(e,c,n){o.invoke("nano:get",e,c,n)},set_value(e,c,n,t){o.invoke("nano:set",e,c,n,t)},on_value(e){o.on("nano-onvalue",(c,n)=>e(n))}});
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 4.2 KiB |
@@ -16,7 +16,7 @@ const createWindow = () => {
|
||||
const mainWindow = new BrowserWindow({
|
||||
width: 1100,
|
||||
height: 912,
|
||||
icon: path.join(__dirname, '../renderer/main_window/assets/favicon.png'),
|
||||
icon: path.join(__dirname, `/assets/favicon.png`),
|
||||
webPreferences: {
|
||||
preload: path.join(__dirname, 'preload.js'),
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user