vike 0.4.218-commit-023914f → 0.4.218-commit-0a599fa
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 +5 -3
- package/dist/cjs/utils/PROJECT_VERSION.js +1 -1
- package/dist/esm/node/plugin/plugins/commonConfig.js +5 -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
|
@@ -156,12 +156,14 @@ function temp_supportOldInterface(config) {
|
|
|
156
156
|
if (config.vitePluginSsr.prerender.disableAutoRun) {
|
|
157
157
|
(0, isPrerenderAutoRunEnabled_js_1.temp_disablePrerenderAutoRun)();
|
|
158
158
|
}
|
|
159
|
+
return;
|
|
159
160
|
}
|
|
160
|
-
if ((0, utils_js_1.hasProp)(config.vitePluginSsr, '
|
|
161
|
-
if (config.vitePluginSsr.
|
|
162
|
-
(0, utils_js_1.assert)(config.vitePluginSsr.
|
|
161
|
+
if ((0, utils_js_1.hasProp)(config.vitePluginSsr, 'disableAutoFullBuild')) {
|
|
162
|
+
if (config.vitePluginSsr.disableAutoFullBuild) {
|
|
163
|
+
(0, utils_js_1.assert)(config.vitePluginSsr.disableAutoFullBuild === 'prerender');
|
|
163
164
|
(0, isPrerenderAutoRunEnabled_js_1.temp_disablePrerenderAutoRun)();
|
|
164
165
|
}
|
|
166
|
+
return;
|
|
165
167
|
}
|
|
166
168
|
(0, utils_js_1.assert)(false);
|
|
167
169
|
}
|
|
@@ -151,12 +151,14 @@ function temp_supportOldInterface(config) {
|
|
|
151
151
|
if (config.vitePluginSsr.prerender.disableAutoRun) {
|
|
152
152
|
temp_disablePrerenderAutoRun();
|
|
153
153
|
}
|
|
154
|
+
return;
|
|
154
155
|
}
|
|
155
|
-
if (hasProp(config.vitePluginSsr, '
|
|
156
|
-
if (config.vitePluginSsr.
|
|
157
|
-
assert(config.vitePluginSsr.
|
|
156
|
+
if (hasProp(config.vitePluginSsr, 'disableAutoFullBuild')) {
|
|
157
|
+
if (config.vitePluginSsr.disableAutoFullBuild) {
|
|
158
|
+
assert(config.vitePluginSsr.disableAutoFullBuild === 'prerender');
|
|
158
159
|
temp_disablePrerenderAutoRun();
|
|
159
160
|
}
|
|
161
|
+
return;
|
|
160
162
|
}
|
|
161
163
|
assert(false);
|
|
162
164
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PROJECT_VERSION: "0.4.218-commit-
|
|
1
|
+
export declare const PROJECT_VERSION: "0.4.218-commit-0a599fa";
|
|
@@ -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-0a599fa';
|