diff --git a/resources/js/components/app-logo.tsx b/resources/js/components/app-logo.tsx index 69bdcb84d..233c072f7 100644 --- a/resources/js/components/app-logo.tsx +++ b/resources/js/components/app-logo.tsx @@ -1,5 +1,7 @@ import AppLogoIcon from './app-logo-icon'; +const appName = import.meta.env.VITE_APP_NAME || 'Laravel Starter Kit'; + export default function AppLogo() { return ( <> @@ -7,7 +9,7 @@ export default function AppLogo() {
- Laravel Starter Kit + {appName}
);