We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d34820d commit 0583350Copy full SHA for 0583350
webpage/config.js
@@ -10,6 +10,10 @@ let defaultConfig = {
10
baseURL: "https://www.qownnotes.org",
11
};
12
13
+let nextConfig = {
14
+ baseURL: "https://next.qownnotes.org",
15
+};
16
+
17
let localOverride = {
18
baseURL: "http://localhost:8080/",
19
@@ -42,6 +46,7 @@ function deepMerge(target, source) {
42
46
43
47
const configs = {
44
48
prod: defaultConfig,
49
+ next: nextConfig,
45
50
local: deepMerge(defaultConfig, localOverride),
51
"local-docker": deepMerge(defaultConfig, localDockerOverride),
52
0 commit comments