Skip to content

Instantly share code, notes, and snippets.

@Maxim-Kolmogorov
Last active November 6, 2022 09:39
Show Gist options
  • Select an option

  • Save Maxim-Kolmogorov/f181fe8d18d66eace2ec691e9cab3007 to your computer and use it in GitHub Desktop.

Select an option

Save Maxim-Kolmogorov/f181fe8d18d66eace2ec691e9cab3007 to your computer and use it in GitHub Desktop.
Laravel 9 + Vite + Vue.js + SSR = example, part 1
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hello Blade</title>
@vite('resources/sass/app.scss')
</head>
<body>
<div id="app"></div>
</body>
<footer>
@vite('resources/js/app.js')
</footer>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment