MangoNotes/vite.config.js

17 lines
371 B
JavaScript
Raw Permalink Normal View History

2022-09-21 21:39:10 +02:00
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
2022-09-22 11:16:00 +02:00
import react from '@vitejs/plugin-react';
2022-09-21 21:39:10 +02:00
export default defineConfig({
plugins: [
laravel({
2022-09-22 11:16:00 +02:00
input: [
'resources/sass/app.scss',
'resources/js/app.js',
],
2022-09-21 21:39:10 +02:00
refresh: true,
}),
2022-09-22 11:16:00 +02:00
react(),
2022-09-21 21:39:10 +02:00
],
});