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