valaxy 0.11.2 → 0.11.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/client/config.ts CHANGED
@@ -15,7 +15,7 @@ import type { DefaultThemeConfig, SiteConfig as ValaxySiteConfig } from 'valaxy/
15
15
  * @param data
16
16
  * @returns
17
17
  */
18
- function parse<T=any>(data: string): T {
18
+ function parse<T = any>(data: string): T {
19
19
  const parsed = JSON.parse(data)
20
20
  return (__DEV__ ? readonly(parsed) : parsed) as T
21
21
  }