浏览代码

chore: Update config version

Owen Diffey 2 月之前
父节点
当前提交
ab3dbee934
共有 3 个文件被更改,包括 3 次插入3 次删除
  1. 1 1
      backend/config/default.json
  2. 1 1
      backend/config/template.json
  3. 1 1
      backend/index.js

+ 1 - 1
backend/config/default.json

@@ -1,5 +1,5 @@
 {
-	"configVersion": 12,
+	"configVersion": 13,
 	"migration": false,
 	"secret": "default",
 	"port": 8080,

+ 1 - 1
backend/config/template.json

@@ -1,5 +1,5 @@
 {
-	"configVersion": 12,
+	"configVersion": 13,
 	"migration": false,
 	"secret": "CHANGE_ME",
 	"url": {

+ 1 - 1
backend/index.js

@@ -7,7 +7,7 @@ import fs from "fs";
 import * as readline from "node:readline";
 import packageJson from "./package.json" with { type: "json" };
 
-const REQUIRED_CONFIG_VERSION = 12;
+const REQUIRED_CONFIG_VERSION = 13;
 
 // eslint-disable-next-line
 Array.prototype.remove = function (item) {