diff options
author | stuebinm | 2022-03-19 19:12:04 +0100 |
---|---|---|
committer | stuebinm | 2022-03-19 20:07:45 +0100 |
commit | dbf2253dc4256809b255767cbf4ae9c236f18542 (patch) | |
tree | ae2eb6e09db7aeab76ef22171c43e679cfa2c86a /config.json | |
parent | 25111b467c91e411f1c7a4281c2eee5671db7406 (diff) |
remove leftover rc3 things & some new stuff
this removes:
- the bbb properties
- all explicit mentions of rc3
- the weird script domain hacks (done via a substitution now)
- some (few) of the weirder code choices
it also adds some more type level witchery to deal with configs, which
for some reason seems to be the hardest problem of this entire program …
also the server now does inter-assembly dependency checking!
Diffstat (limited to '')
-rw-r--r-- | config.json | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/config.json b/config.json index 1ccb0a5..35e89e9 100644 --- a/config.json +++ b/config.json @@ -6,13 +6,13 @@ "MaxLintLevel":"Fatal", "DontCopyAssets":false, "UriSchemas": { - "world": { - "scope" : ["map"], - "substs" : { - } - }, - "https": { - "scope" : [ "website", "audio" ] - } + "https:": [ + { + "scope" : [ "website", "audio" ] + }, + { + "scope" : [ "script" ], + "allowed" : [ "scripts.world.di.c3voc.de" ] + }] } } |