Level 18
The actuall problem is in vite. But i'm not clear what is wrong, it stops to work as soon as vite is building.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I deployed again my laravel 10 app the only thing I changed was the welcome view which was the defult laravel and I did a custom view, but it returns a 500 server error. I have a nova admin but those routes do work. Here is my view.
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:400,600&display=swap" rel="stylesheet" />
<!-- @vite(['resources/css/app.css', 'resources/js/app.js']) -->
</head>
<body class="antialiased">
<!-- Header Section Start -->
<header class="top_main_hdr">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-4 col-xs-12 pull-right">
<div class="logo"><a href="/"><img src="img/taiglich-logo.png" alt=""></a></div>
</div>
</div>
</div>
</header>
<section class="bdy_sec">
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-12">
<div class="bdy_lft_txt">
<h1>The #1 App for all your Simchas & Events, Never miss a Simcha again!</h1>
<p>Taiglich is the APP where you will find all Simchas in: Boro Park, Williamsburg, Monsey, Kiryas Yoel, New Square, Lakewood, Nitra, Kasho, Bloomingburg, Sea Gate, Staten Island & Jersey City.</p>
<p>See the new Shidduchim updated every day, and you can also add your Simcha in a few simple steps.</p>
<p>You can share any Simcha with friends, so they can know about it as well.</p>
<h2>Contact Us:</h2>
<ul class="cntct_dtl">
<li><b>Phone: </b>347.471.0505</li>
<li><b>E-mail: </b>[email protected]</li>
<li><b>Web: </b>www.taiglich.com</li>
</ul>
</div>
</div>
<div class="col-md-6 col-sm-12">
<div class="bdy_right_img">
<img src="img/taiglich-app.png" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- App Download Section start -->
<section class="app_dwnld_sec">
<div class="container">
<h2>Download Here</h2>
<ul>
<li><a href="https://itunes.apple.com/us/app/taiglich/id1443705132?mt=8" target="_blank"><img src="img/taiglich-apple.png" alt=""></a></li>
<li><a href="https://play.google.com/store/apps/details?id=com.karmickdroid.app.taiglich" target="_blank"><img src="img/taiglich-google.png" alt=""></a></li>
</ul>
</div>
</section>
<!-- Footer Section Start -->
<footer class="main_ftr">
<div class="container">
<p><a href="#">Privacy Policy</a> </p>
</div>
</footer>
</body>
</html>
I also added a css file and compiled it with vite.
Please or to participate in this conversation.