mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
20 lines
1.0 KiB
TypeScript
20 lines
1.0 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import assert from "assert";
|
|
import path from "path";
|
|
|
|
export const isDevelopment = process.env.NODE_ENV !== "production";
|
|
export const mainDir = path.join(process.cwd(), "src", "main");
|
|
export const buildDir = path.join(process.cwd(), "static", "build");
|
|
export const assetsFolderName = "assets";
|
|
export const rendererDir = path.join(process.cwd(), "src", "renderer");
|
|
export const htmlTemplate = path.resolve(__dirname, "..", "node_modules", "@k8slens", "core", "src/renderer", "template.html");
|
|
export const publicPath = "/build/";
|
|
export const sassCommonVars = path.resolve(__dirname, "..", "node_modules", "@k8slens", "core", "src", "renderer", "components/vars.scss");
|
|
export const webpackDevServerPort = Number(process.env.WEBPACK_DEV_SERVER_PORT) || 9191;
|
|
|
|
assert(Number.isInteger(webpackDevServerPort), "WEBPACK_DEV_SERVER_PORT environment variable must only be an integer");
|