I want to install Vite in my Laravel 8 project. What should I do to migrate from Laravel Mix to Vite?
I have followed another tutorial on the web, but it didn't work for me
- Install Vite and the Laravel Plugin
npm install --save-dev vite laravel-vite-plugin
- Configure Vite
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
export default defineConfig({
plugins: [
laravel([
'resources/css/app.css',
'resources/js/app.js',
]),
],
});
- Update NPM
"scripts": {
- "dev": "npm run development",
- "development": "mix",
- "watch": "mix watch",
- "watch-poll": "mix watch -- --watch-options-poll=1000",
- "hot": "mix watch --hot",
- "prod": "npm run production",
- "production": "mix --production"
+ "dev": "vite",
+ "build": "vite build"
}
and another step on https://balajidharma.medium.com/how-to-migrating-from-laravel-mix-to-vite-fbb912237844