Stop mixing platform-specific code (#1114)

Bundle sizes are unchanged but now we no longer pull in the
Electron-specific FS code on the web version
This commit is contained in:
Jed Fox
2023-06-09 16:06:18 -04:00
committed by GitHub
parent 87d269ba5c
commit 02f1fe48c6
21 changed files with 77 additions and 46 deletions

View File

@@ -1,6 +1,7 @@
import fetch from 'node-fetch';
import * as bundle from './app/bundle.api';
// eslint-disable-next-line import/extensions
import * as bundle from './app/bundle.api.js';
import * as injected from './injected';
let actualApp;