Revert "load export v2 website preview for testing"

This reverts commit ae51312be9.
This commit is contained in:
Abhinav 2021-12-19 11:38:09 +05:30
parent b24dd7871a
commit 6aaa2d2e7f

View file

@ -36,9 +36,9 @@ export function createWindow(): BrowserWindow {
mainWindow.webContents.openDevTools();
} else {
splash.loadURL(
`file://${path.join(process.resourcesPath, 'splash.html')}`
`file://${path.join(process.resourcesPath, 'splash.html')}`,
);
mainWindow.loadURL('http://export-v2.bada-frame.pages.dev');
mainWindow.loadURL('http://web.ente.io');
}
mainWindow.webContents.on('did-fail-load', () => {
splash.close();
@ -46,7 +46,7 @@ export function createWindow(): BrowserWindow {
isDev
? mainWindow.loadFile(`../build/error.html`)
: splash.loadURL(
`file://${path.join(process.resourcesPath, 'error.html')}`
`file://${path.join(process.resourcesPath, 'error.html')}`,
);
});
mainWindow.once('ready-to-show', () => {