UNPKG

@shopify/cli-kit

Version:

A set of utilities, interfaces, and models that are common across all the platform features

7 lines 294 B
export const isDevServerEnvironment = process.env.USING_DEV === "1" || process.env.SPIN === "1"; export function assertCompatibleEnvironment() { if (!isDevServerEnvironment) { throw new Error("DevServer is not supported in this environment"); } } //# sourceMappingURL=env.js.map