Vite: Do not magically support env var destructuring

This commit is contained in:
Ian VanSchooten 2022-11-20 21:51:49 -05:00
parent abe2ccbf3c
commit 1d94f8cd19

View File

@ -1,5 +1,3 @@
import { stringifyEnvs } from '@storybook/core-common';
import type { UserConfig } from 'vite';
import type { Builder_EnvsRaw } from '@storybook/types';
@ -39,9 +37,6 @@ export function stringifyProcessEnvs(raw: Builder_EnvsRaw, envPrefix: UserConfig
'process.env.XSTORYBOOK_EXAMPLE_APP': '""',
}
);
// support destructuring like
// const { foo } = import.meta.env;
envs['import.meta.env'] = JSON.stringify(stringifyEnvs(updatedRaw));
return envs;
}