vite-plugin-react-server
Version:
Vite plugin for React Server Components (RSC)
12 lines (10 loc) • 294 B
JavaScript
/**
* vite-plugin-react-server
* Copyright (c) Nico Brinkkemper
* MIT License
*/
const getCondition = () => {
return process.env["NODE_OPTIONS"]?.match(/--condition[= ]react-server/) ? "react-server" : "react-client";
};
export { getCondition };
//# sourceMappingURL=getCondition.js.map