A vite plugin that remove codes according env variable druing build.
When you want to build your code into multiple versions and add or remove some specific code between versions
pnpm install vite-plugin-condition-build
First you need to configure the VITE_SERVE_KIND field in the env file, the specific value is up to you. Like this:
VITE_SERVE_KIND=manage
Next in the code use block comments to circle the code that only needs to appear under a certain SERVER_KIND:
// some code
const a = 1;
// ...
// #if (SERVE_KIND == "console")
const foo = "bar";
// #endif
// ...
const b = 2;
// #if (SERVE_KIND == "manage")
const bar = "foo";
// #endif
// other codeFinally, the code you build will looks like this:
// some code
const a = 1;
// ...
const b = 2;
// #if (SERVE_KIND == "manage")
const bar = "foo";
// #endif
// other codebeside "==", you can use "!=" in the comment:
// some code
const a = 1;
// ...
// #if (SERVE_KIND != "console")
const foo = "bar";
// #endif
// ...
const b = 2;
// #if (SERVE_KIND != "manage")
const bar = "foo";
// #endif
// other codeand then the output will be:
// some code
const a = 1;
// ...
// #if (SERVE_KIND != "console")
const foo = "bar";
// #endif
// ...
const b = 2;
// other codeYou can even use "*" in comment as wildcard:
VITE_SERVE_KIND=console.lite// some code
const a = 1;
// ...
// #if (SERVE_KIND == "console.*")
const foo = "bar";
// #endif
// ...
const b = 2;
// #if (SERVE_KIND == "manage")
const bar = "foo";
// #endif
// other codeoutput:
// some code
const a = 1;
// ...
const b = 2;
// #if (SERVE_KIND == "console.*")
const bar = "foo";
// #endif
// other code