fix custom domain warning
This commit is contained in:
parent
5a07064eee
commit
aa38aac626
|
@ -55,8 +55,5 @@ export default defineNuxtConfig({
|
|||
},
|
||||
'~/components',
|
||||
],
|
||||
routeRules: { ... cachedRoutes},
|
||||
devServer: {
|
||||
https: true,
|
||||
}
|
||||
routeRules: { ... cachedRoutes}
|
||||
})
|
||||
|
|
|
@ -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": "*",
|
||||
|
|
|
@ -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','')),
|
||||
|
||||
];
|
||||
|
|
Loading…
Reference in New Issue