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',
],
routeRules: { ... cachedRoutes},
devServer: {
https: true,
}
routeRules: { ... cachedRoutes}
})

View File

@ -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": "*",

View File

@ -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','')),
];