This repository has been archived on 2025-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
project-client/src/shared/paths.ts
Kylie C fc5a3e8a88 New Vesktop Icon
feedback welcome.

Also cleaned up icons and removed dynamically setting the icon (electron builder handles this)
2024-09-19 19:17:54 -04:00

12 lines
500 B
TypeScript

/*
* SPDX-License-Identifier: GPL-3.0
* Vesktop, a desktop app aiming to give you a snappier Discord Experience
* Copyright (c) 2023 Vendicated and Vencord contributors
*/
import { join } from "path";
export const STATIC_DIR = /* @__PURE__ */ join(__dirname, "..", "..", "static");
export const VIEW_DIR = /* @__PURE__ */ join(STATIC_DIR, "views");
export const BADGE_DIR = /* @__PURE__ */ join(STATIC_DIR, "badges");
export const TRAY_ICON_PATH = /* @__PURE__ */ join(STATIC_DIR, "tray.png");