Refactor target directory assignment in store to use import.meta.env for development environment detection.

This commit is contained in:
Huakun Shen 2025-03-23 08:28:18 -04:00
parent 969ba81090
commit 179d609522
No known key found for this signature in database

View File

@ -1,7 +1,6 @@
import { writable } from "svelte/store";
import { dev } from "$app/environment";
export const stress = writable(1);
export const targetDir = writable<string | undefined>(
dev ? "/Volumes/Portable2TB" : undefined
import.meta.env.DEV ? "/Volumes/Portable2TB" : undefined
);