Jun 8, 2021
You forgot to add the IPC handler to your main process in main.js
ipcMain.handle('request', async (_, axios_request) => {
const result = await axios(axios_request)
return { data: result.data, status: result.status }
})
You forgot to add the IPC handler to your main process in main.js
ipcMain.handle('request', async (_, axios_request) => {
const result = await axios(axios_request)
return { data: result.data, status: result.status }
})
I write code and occasionally, bad poetry. Thankfully, my code isn’t as bad as my poetry.