vike 0.4.256-commit-3de784e → 0.4.256-commit-0fd6b98
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.
|
@@ -6,7 +6,12 @@ export function getServerInfo(vikeConfig) {
|
|
|
6
6
|
let serverFilePath = null;
|
|
7
7
|
let serverEntryVike;
|
|
8
8
|
// universal-deploy support must be manually enabled
|
|
9
|
-
const serverConfig =
|
|
9
|
+
const serverConfig =
|
|
10
|
+
// +config.js > `export default { server: true }`
|
|
11
|
+
vikeConfig.config.server ||
|
|
12
|
+
// +server.js exists
|
|
13
|
+
!!vikeConfig._pageConfigGlobal.configValueSources.server ||
|
|
14
|
+
false;
|
|
10
15
|
if (serverConfig === false)
|
|
11
16
|
return;
|
|
12
17
|
const serverPlusFile = vikeConfig._pageConfigGlobal.configValueSources.server?.[0];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PROJECT_VERSION: "0.4.256-commit-
|
|
1
|
+
export declare const PROJECT_VERSION: "0.4.256-commit-0fd6b98";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Automatically updated by @brillout/release-me
|
|
2
|
-
export const PROJECT_VERSION = '0.4.256-commit-
|
|
2
|
+
export const PROJECT_VERSION = '0.4.256-commit-0fd6b98';
|