Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

TikTina's avatar

Using SCSS with Laravel Jetstream + Inertia + Vue

In the past projects, I used just plain Laravel with 'blade.php', but this time I want to try Laravel Jetstream Inertia with Vue, and I stumbled upon a problem, I just can't figure out how to use css/scss here...do I need to create a SASS folder with the main app.scss file or what?

1 like
3 replies
Sinnbeck's avatar

Or do you mean, how you can import it inside vue? You can just add it to your app.blade.php file like you regularly would

TikTina's avatar

@Sinnbeck I did everything as you said, but it is still not compiling. I put both

<link rel="stylesheet" href="{{ mix('css/app.css') }}">
<link rel="stylesheet" href="{{ mix('sass/app.scss') }}">

or should I only leave the first line of code?

Please or to participate in this conversation.