mirror of
https://github.com/jeffvli/feishin.git
synced 2026-07-04 09:39:56 +02:00
16c9e6cc1b
* remove dynamic import for platform features * increase node memory limit on macOS build * fix invalid dynamic imports in renderer * remove discord-rpc import in renderer
10 lines
213 B
TypeScript
10 lines
213 B
TypeScript
import './core';
|
|
|
|
if (process.platform === 'linux') {
|
|
import('./linux');
|
|
} else if (process.platform === 'darwin') {
|
|
import('./darwin');
|
|
} else if (process.platform === 'win32') {
|
|
import('./win32');
|
|
}
|