Loading app/Config/Routes.php +2 −2 Original line number Diff line number Diff line Loading @@ -51,8 +51,8 @@ $routes->addPlaceholder( $routes->get('manifest.webmanifest', 'WebmanifestController', [ 'as' => 'webmanifest', ]); $routes->get('styles/themes.css', 'ColorsController', [ 'as' => 'color-themes-css', $routes->get('themes/colors', 'ColorsController', [ 'as' => 'themes-colors-css', ]); // We get a performance increase by specifying the default Loading app/Views/errors/html/error_404.php +1 −1 Original line number Diff line number Diff line Loading @@ -5,7 +5,7 @@ <head> <meta charset="utf-8"> <title>404 Page Not Found</title> <link rel='stylesheet' type='text/css' href='<?= route_to('color-themes-css') ?>' /> <link rel='stylesheet' type='text/css' href='<?= route_to('themes-colors-css') ?>' /> <?= service('vite')->asset('styles/index.css', 'css') ?> </head> Loading app/Views/errors/html/production.php +1 −1 Original line number Diff line number Diff line Loading @@ -7,7 +7,7 @@ <meta name="robots" content="noindex"> <title>Whoops!</title> <link rel='stylesheet' type='text/css' href='<?= route_to('color-themes-css') ?>' /> <link rel='stylesheet' type='text/css' href='<?= route_to('themes-colors-css') ?>' /> <?= service('vite')->asset('styles/index.css', 'css') ?> </head> Loading themes/cp_admin/_layout.php +1 −1 Original line number Diff line number Diff line Loading @@ -14,7 +14,7 @@ <link rel="apple-touch-icon" href="<?= service('settings')->get('App.siteIcon')['180'] ?>"> <link rel="manifest" href="<?= route_to('webmanifest') ?>"> <link rel='stylesheet' type='text/css' href='<?= route_to('color-themes-css') ?>' /> <link rel='stylesheet' type='text/css' href='<?= route_to('themes-colors-css') ?>' /> <?= service('vite') ->asset('styles/index.css', 'css') ?> <?= service('vite') Loading themes/cp_app/embed.php +1 −1 Original line number Diff line number Diff line Loading @@ -12,7 +12,7 @@ <link rel="icon" type="image/x-icon" href="<?= service('settings') ->get('App.siteIcon')['ico'] ?>" /> <link rel="apple-touch-icon" href="<?= service('settings')->get('App.siteIcon')['180'] ?>"> <link rel='stylesheet' type='text/css' href='<?= route_to('color-themes-css') ?>' /> <link rel='stylesheet' type='text/css' href='<?= route_to('themes-colors-css') ?>' /> <?= service('vite') ->asset('styles/index.css', 'css') ?> <?= service('vite') Loading Loading
app/Config/Routes.php +2 −2 Original line number Diff line number Diff line Loading @@ -51,8 +51,8 @@ $routes->addPlaceholder( $routes->get('manifest.webmanifest', 'WebmanifestController', [ 'as' => 'webmanifest', ]); $routes->get('styles/themes.css', 'ColorsController', [ 'as' => 'color-themes-css', $routes->get('themes/colors', 'ColorsController', [ 'as' => 'themes-colors-css', ]); // We get a performance increase by specifying the default Loading
app/Views/errors/html/error_404.php +1 −1 Original line number Diff line number Diff line Loading @@ -5,7 +5,7 @@ <head> <meta charset="utf-8"> <title>404 Page Not Found</title> <link rel='stylesheet' type='text/css' href='<?= route_to('color-themes-css') ?>' /> <link rel='stylesheet' type='text/css' href='<?= route_to('themes-colors-css') ?>' /> <?= service('vite')->asset('styles/index.css', 'css') ?> </head> Loading
app/Views/errors/html/production.php +1 −1 Original line number Diff line number Diff line Loading @@ -7,7 +7,7 @@ <meta name="robots" content="noindex"> <title>Whoops!</title> <link rel='stylesheet' type='text/css' href='<?= route_to('color-themes-css') ?>' /> <link rel='stylesheet' type='text/css' href='<?= route_to('themes-colors-css') ?>' /> <?= service('vite')->asset('styles/index.css', 'css') ?> </head> Loading
themes/cp_admin/_layout.php +1 −1 Original line number Diff line number Diff line Loading @@ -14,7 +14,7 @@ <link rel="apple-touch-icon" href="<?= service('settings')->get('App.siteIcon')['180'] ?>"> <link rel="manifest" href="<?= route_to('webmanifest') ?>"> <link rel='stylesheet' type='text/css' href='<?= route_to('color-themes-css') ?>' /> <link rel='stylesheet' type='text/css' href='<?= route_to('themes-colors-css') ?>' /> <?= service('vite') ->asset('styles/index.css', 'css') ?> <?= service('vite') Loading
themes/cp_app/embed.php +1 −1 Original line number Diff line number Diff line Loading @@ -12,7 +12,7 @@ <link rel="icon" type="image/x-icon" href="<?= service('settings') ->get('App.siteIcon')['ico'] ?>" /> <link rel="apple-touch-icon" href="<?= service('settings')->get('App.siteIcon')['180'] ?>"> <link rel='stylesheet' type='text/css' href='<?= route_to('color-themes-css') ?>' /> <link rel='stylesheet' type='text/css' href='<?= route_to('themes-colors-css') ?>' /> <?= service('vite') ->asset('styles/index.css', 'css') ?> <?= service('vite') Loading