Files
Kent-logistics-Laravel/vite.config.js

17 lines
451 B
JavaScript
Raw Normal View History

2025-11-04 10:19:07 +05:30
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
import tailwindcss from '@tailwindcss/vite';
export default defineConfig({
plugins: [
laravel({
2026-02-17 14:32:48 +05:30
input: [
"resources/css/app.css",
"resources/js/app.js",
// ❌ Remove echo.js from here - it's imported in app.js
],
2025-11-04 10:19:07 +05:30
refresh: true,
}),
tailwindcss(),
],
2026-02-17 14:32:48 +05:30
});