vike 0.4.218-commit-023914f → 0.4.218-commit-a3e00f4
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/cjs/node/plugin/plugins/commonConfig.js +3 -3
- package/dist/cjs/utils/PROJECT_VERSION.js +1 -1
- package/dist/esm/node/plugin/plugins/commonConfig.js +3 -3
- package/dist/esm/utils/PROJECT_VERSION.d.ts +1 -1
- package/dist/esm/utils/PROJECT_VERSION.js +1 -1
- package/dist/esm/utils/projectInfo.d.ts +1 -1
- package/package.json +1 -1
|
@@ -157,9 +157,9 @@ function temp_supportOldInterface(config) {
|
|
|
157
157
|
(0, isPrerenderAutoRunEnabled_js_1.temp_disablePrerenderAutoRun)();
|
|
158
158
|
}
|
|
159
159
|
}
|
|
160
|
-
if ((0, utils_js_1.hasProp)(config.vitePluginSsr, '
|
|
161
|
-
if (config.vitePluginSsr.
|
|
162
|
-
(0, utils_js_1.assert)(config.vitePluginSsr.
|
|
160
|
+
if ((0, utils_js_1.hasProp)(config.vitePluginSsr, 'disableAutoFullBuild')) {
|
|
161
|
+
if (config.vitePluginSsr.disableAutoFullBuild) {
|
|
162
|
+
(0, utils_js_1.assert)(config.vitePluginSsr.disableAutoFullBuild === 'prerender');
|
|
163
163
|
(0, isPrerenderAutoRunEnabled_js_1.temp_disablePrerenderAutoRun)();
|
|
164
164
|
}
|
|
165
165
|
}
|
|
@@ -152,9 +152,9 @@ function temp_supportOldInterface(config) {
|
|
|
152
152
|
temp_disablePrerenderAutoRun();
|
|
153
153
|
}
|
|
154
154
|
}
|
|
155
|
-
if (hasProp(config.vitePluginSsr, '
|
|
156
|
-
if (config.vitePluginSsr.
|
|
157
|
-
assert(config.vitePluginSsr.
|
|
155
|
+
if (hasProp(config.vitePluginSsr, 'disableAutoFullBuild')) {
|
|
156
|
+
if (config.vitePluginSsr.disableAutoFullBuild) {
|
|
157
|
+
assert(config.vitePluginSsr.disableAutoFullBuild === 'prerender');
|
|
158
158
|
temp_disablePrerenderAutoRun();
|
|
159
159
|
}
|
|
160
160
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PROJECT_VERSION: "0.4.218-commit-
|
|
1
|
+
export declare const PROJECT_VERSION: "0.4.218-commit-a3e00f4";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Automatically updated by @brillout/release-me
|
|
2
|
-
export const PROJECT_VERSION = '0.4.218-commit-
|
|
2
|
+
export const PROJECT_VERSION = '0.4.218-commit-a3e00f4';
|