alinea
Version:
[](https://npmjs.org/package/alinea) [](https://packagephobia.com/result?p=alinea)
19 lines (17 loc) • 402 B
JavaScript
import "../../chunks/chunk-U5RRZUYZ.js";
// src/cli/util/WarnPublicEnv.ts
var mockProcess = {
env: new Proxy(
{},
{
get(target, key) {
console.warn(
`process.env.${key} is not defined on the client. If this variable is required in the browser, prefix the variable with PUBLIC_ and restart alinea.`
);
}
}
)
};
export {
mockProcess as process
};