mirror of
https://github.com/kunkunsh/kunkun-ext-disk-speed.git
synced 2025-04-04 11:16:43 +00:00
Refactor target directory assignment in store to use import.meta.env for development environment detection.
This commit is contained in:
parent
969ba81090
commit
179d609522
@ -1,7 +1,6 @@
|
|||||||
import { writable } from "svelte/store";
|
import { writable } from "svelte/store";
|
||||||
import { dev } from "$app/environment";
|
|
||||||
|
|
||||||
export const stress = writable(1);
|
export const stress = writable(1);
|
||||||
export const targetDir = writable<string | undefined>(
|
export const targetDir = writable<string | undefined>(
|
||||||
dev ? "/Volumes/Portable2TB" : undefined
|
import.meta.env.DEV ? "/Volumes/Portable2TB" : undefined
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user