diff --git a/src/utils.ts b/src/utils.ts index 36ca6c9..dd7895a 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -60,7 +60,8 @@ export function getCurrentLang(): string { * Returns true if the current OS is Windows */ export function isWindowsOS(): boolean { - return process.platform === 'win32'; + return false; + // return process.platform === 'win32'; } /**