8 lines
298 B
TypeScript
8 lines
298 B
TypeScript
import { loadProductIdentity } from '@bytelyst/config';
|
|
|
|
const identity = loadProductIdentity(new URL('../../../shared/product.json', import.meta.url).pathname);
|
|
|
|
export const productConfig = identity;
|
|
export const PRODUCT_ID = identity.productId;
|
|
export const DISPLAY_NAME = identity.displayName;
|