Upgrade to 3.5.8

This commit is contained in:
Bastian Allgeier
2021-11-16 10:46:50 +01:00
parent 5cb8dd0bd9
commit 7388fa4d24
13 changed files with 1340 additions and 34 deletions

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,11 @@
const fs = require("fs");
process.env.VUE_APP_DEV_SERVER = "https://sandbox.kirby.test";
module.exports = {
host: "sandbox.kirby.test",
https: {
key: fs.readFileSync('/Users/luX/Library/Application Support/Caddy/certificates/local/sandbox.kirby.test/sandbox.kirby.test.key'),
cert: fs.readFileSync('/Users/luX/Library/Application Support/Caddy/certificates/local/sandbox.kirby.test/sandbox.kirby.test.crt')
}
};