mirror of
https://github.com/docker/awesome-compose.git
synced 2025-06-30 01:31:06 +00:00
- Frontend: React Js setup with Vite - Backend: Laravel - Database: MySQL Signed-off-by: Raghavendra N <8619262+raghavendra89@users.noreply.github.com>
12 lines
263 B
JavaScript
12 lines
263 B
JavaScript
import { defineConfig } from 'vite';
|
|
import laravel from 'laravel-vite-plugin';
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
laravel({
|
|
input: ['resources/css/app.css', 'resources/js/app.js'],
|
|
refresh: true,
|
|
}),
|
|
],
|
|
});
|