one
Version:
One is a new React Framework that makes Vite serve both native and web.
10 lines • 315 B
TypeScript
/**
* babel plugin that inlines process.env.ONE_SERVER_URL at build time
* so native prod bundles know where to fetch loaders from.
*/
export default function pluginInlineOneServerUrl(): {
visitor: {
MemberExpression(nodePath: any): void;
};
};
//# sourceMappingURL=inline-one-server-url.d.ts.map