2023-04-10 20:05:21 +00:00
|
|
|
/*
|
|
|
|
* SPDX-License-Identifier: GPL-3.0
|
2023-07-13 17:03:13 +00:00
|
|
|
* Vesktop, a desktop app aiming to give you a snappier Discord Experience
|
2023-04-10 20:05:21 +00:00
|
|
|
* Copyright (c) 2023 Vendicated and Vencord contributors
|
|
|
|
*/
|
|
|
|
|
|
|
|
import "./utils/dotenv";
|
|
|
|
|
|
|
|
import { spawnNodeModuleBin } from "./utils/spawn.mjs";
|
|
|
|
|
2023-10-21 20:15:55 +00:00
|
|
|
spawnNodeModuleBin("electron", [".", ...(process.env.ELECTRON_LAUNCH_FLAGS?.split(" ") ?? [])]);
|