From aa38aac626d5c48f74975cd5492169435e8dfdf8 Mon Sep 17 00:00:00 2001 From: Forms Dev Date: Thu, 21 Dec 2023 16:08:05 +0530 Subject: [PATCH] fix custom domain warning --- client/nuxt.config.ts | 5 +---- composer.json | 6 ------ config/custom-domains.php | 2 +- 3 files changed, 2 insertions(+), 11 deletions(-) diff --git a/client/nuxt.config.ts b/client/nuxt.config.ts index 03cd222..c509daa 100644 --- a/client/nuxt.config.ts +++ b/client/nuxt.config.ts @@ -55,8 +55,5 @@ export default defineNuxtConfig({ }, '~/components', ], - routeRules: { ... cachedRoutes}, - devServer: { - https: true, - } + routeRules: { ... cachedRoutes} }) diff --git a/composer.json b/composer.json index c4ea8ca..f3f87b9 100644 --- a/composer.json +++ b/composer.json @@ -11,12 +11,6 @@ ], "license": "MIT", "type": "project", - "repositories": [ - { - "type": "vcs", - "url": "https://github.com/JhumanJ/laravel-notion-api.git" - } - ], "require": { "php": "^8.2", "ext-json": "*", diff --git a/config/custom-domains.php b/config/custom-domains.php index 17c3a53..3dcd3b9 100644 --- a/config/custom-domains.php +++ b/config/custom-domains.php @@ -4,6 +4,6 @@ return [ 'enabled' => !empty(env('CADDY_SECRET')) && !empty(env('CADDY_AUTHORIZED_IPS', [])), 'caddy_secret' => env('CADDY_SECRET'), - 'authorized_ips' => explode(',', env('CADDY_AUTHORIZED_IPS')), + 'authorized_ips' => explode(',', env('CADDY_AUTHORIZED_IPS','')), ];