vitrify 0.26.8 → 0.26.9

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/dist/index.js CHANGED
@@ -636,6 +636,7 @@ export const baseConfig = async ({ ssr, appDir, publicDir, base = '/', command =
636
636
  __HOST__: `'localhost'`,
637
637
  __BASE_URL__: `'${base}'`,
638
638
  __IS_PWA__: `${isPwa}`,
639
+ __DEBUG__: `'${debug ? true : false}'`,
639
640
  __VUE_PROD_HYDRATION_MISMATCH_DETAILS__: `'${debug ? true : false}'`
640
641
  },
641
642
  // environments: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vitrify",
3
- "version": "0.26.8",
3
+ "version": "0.26.9",
4
4
  "description": "Vite as your Full Stack development tool",
5
5
  "keywords": [
6
6
  "fastify",
package/src/node/index.ts CHANGED
@@ -755,6 +755,7 @@ export const baseConfig = async ({
755
755
  __HOST__: `'localhost'`,
756
756
  __BASE_URL__: `'${base}'`,
757
757
  __IS_PWA__: `${isPwa}`,
758
+ __DEBUG__: `'${debug ? true : false}'`,
758
759
  __VUE_PROD_HYDRATION_MISMATCH_DETAILS__: `'${debug ? true : false}'`
759
760
  },
760
761
  // environments: {