Last active
November 6, 2022 09:39
-
-
Save Maxim-Kolmogorov/f181fe8d18d66eace2ec691e9cab3007 to your computer and use it in GitHub Desktop.
Laravel 9 + Vite + Vue.js + SSR = example, part 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!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