fix custom domain warning

This commit is contained in:
Forms Dev 2023-12-21 16:08:05 +05:30
parent 5a07064eee
commit aa38aac626
3 changed files with 2 additions and 11 deletions

View File

@ -55,8 +55,5 @@ export default defineNuxtConfig({
}, },
'~/components', '~/components',
], ],
routeRules: { ... cachedRoutes}, routeRules: { ... cachedRoutes}
devServer: {
https: true,
}
}) })

View File

@ -11,12 +11,6 @@
], ],
"license": "MIT", "license": "MIT",
"type": "project", "type": "project",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/JhumanJ/laravel-notion-api.git"
}
],
"require": { "require": {
"php": "^8.2", "php": "^8.2",
"ext-json": "*", "ext-json": "*",

View File

@ -4,6 +4,6 @@ return [
'enabled' => !empty(env('CADDY_SECRET')) && !empty(env('CADDY_AUTHORIZED_IPS', [])), 'enabled' => !empty(env('CADDY_SECRET')) && !empty(env('CADDY_AUTHORIZED_IPS', [])),
'caddy_secret' => env('CADDY_SECRET'), 'caddy_secret' => env('CADDY_SECRET'),
'authorized_ips' => explode(',', env('CADDY_AUTHORIZED_IPS')), 'authorized_ips' => explode(',', env('CADDY_AUTHORIZED_IPS','')),
]; ];