rwsdk
Version:
Build fast, server-driven webapps on Cloudflare with SSR, RSC, and realtime
12 lines (11 loc) • 399 B
JavaScript
export const devServerConstantPlugin = () => {
return {
name: "rwsdk:dev-server-constant",
config(_, { command, isPreview }) {
if (command === "serve" && !isPreview) {
// context(justinvdm, 21 Jul 2025): Vite forwards this as `import.meta.env.DEV_IS_DEV_SERVER`
process.env.VITE_IS_DEV_SERVER = "1";
}
},
};
};