File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
- import { NODE_ENV as NODE_ENV_STRING , PLAUSIBLE_SCRIPT_URL , PREVIEW_MODE } from 'astro:env/server' ;
1
+ import { NODE_ENV as NODE_ENV_STRING , PREVIEW_MODE } from 'astro:env/server' ;
2
2
3
3
import { configServerSchema } from '@/schemas/config' ;
4
4
import { CONFIG_CLIENT } from '@/config/client' ;
@@ -11,7 +11,7 @@ import type { ConfigServerType } from '@/types/config';
11
11
const NODE_ENV = NODE_ENV_STRING as ConfigServerType [ 'NODE_ENV' ] ;
12
12
13
13
/** SSG - all env vars are build time only. */
14
- const configServerData : ConfigServerType = { NODE_ENV , PREVIEW_MODE , PLAUSIBLE_SCRIPT_URL } ;
14
+ const configServerData : ConfigServerType = { NODE_ENV , PREVIEW_MODE } ;
15
15
16
16
export const CONFIG_SERVER = validateData ( configServerData , configServerSchema ) ;
17
17
You can’t perform that action at this time.
0 commit comments