Add technical; snippet support

This commit is contained in:
2022-03-31 10:22:41 -05:00
parent 2a8571d6dd
commit 22c2b9f665
1093 changed files with 916277 additions and 133 deletions

View File

@@ -2,4 +2,8 @@ import { env } from '@extollo/lib'
export default {
name: env('APP_NAME', 'Garrett Mills'),
analytics: {
optOutCookie: env('ANALYTICS_OPT_OUT_COOKIE', 'analytics.opt-out'),
}
}

View File

@@ -8,7 +8,6 @@ import {
CacheQueue,
BusConnectorConfig, QueueConfig, SyncQueue
} from "@extollo/lib"
import {LogRequest} from "../http/middlewares/LogRequest.middleware";
export default {
debug: env('DEBUG_MODE', false),
@@ -60,7 +59,7 @@ export default {
middleware: {
global: {
pre: [LogRequest],
pre: [],
},
},
}