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 +1 -0
- package/package.json +1 -1
- package/src/node/index.ts +1 -0
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
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: {
|