mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
20 lines
915 B
TypeScript
20 lines
915 B
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 publicPath = "/build/";
|
|
export const webpackDevServerPort = Number(process.env.WEBPACK_DEV_SERVER_PORT) || 9191;
|
|
export const htmlTemplate = require.resolve("@k8slens/core/template.html");
|
|
export const sassCommonVars = require.resolve("@k8slens/core/vars.scss");
|
|
|
|
assert(Number.isInteger(webpackDevServerPort), "WEBPACK_DEV_SERVER_PORT environment variable must only be an integer");
|