2021-03-29 #laravel #vite-with-laravel #frontend #build-tools
Vite with Laravel: Using Inertia.js
How to set up Inertia.js in Vite with Laravel.
2021-03-29 #laravel #vite-with-laravel #frontend #build-tools
How to set up Inertia.js in Vite with Laravel.
2021-03-25 #laravel #vite-with-laravel #frontend #build-tools #react
How to set up React in Vite with Laravel.
2021-03-25 #laravel #vite-with-laravel #frontend #build-tools #typescript
How to set up TypeScript in Vite with Laravel.
2021-03-22 #laravel #vite-with-laravel #frontend #build-tools #blade
How to set up Tailwind CSS in Vite with Laravel.
2021-03-22 #laravel #vite-with-laravel #frontend #build-tools #tailwind
How to set up Tailwind CSS in Vite with Laravel.
2021-03-22 #laravel #vite-with-laravel #frontend #build-tools
I've had an eye on Vite for a while. With a stable release out the door (2.0, as 1.0 never left the release candidate stage) it seemed like a good time to give it a shot.
Vite is a frontend build tool like webpack. Instead of bundling development assets, Vite serves native ES modules transpiled with esbuild from the dev server. This means there's a lot less bundling to do, and results in a very fast developer experience. For production builds, Vite uses Rollup to bundle the assets.
2021-03-22 #laravel #vite-with-laravel #frontend #build-tools #vue
How to set up Vue.js in Vite with Laravel.