Roman_applicant-site/vite.config.js

16 lines
353 B
JavaScript
Raw Permalink Normal View History

2024-01-10 12:57:24 +03:00
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
export default defineConfig({
plugins: [
laravel({
2024-01-10 14:00:03 +03:00
input: [
2024-01-19 10:46:22 +03:00
'resources/sass/app.scss',
2024-01-10 14:00:03 +03:00
'resources/js/app.js',
2024-01-19 15:59:45 +03:00
'resources/css/app.css',
2024-01-10 14:00:03 +03:00
],
2024-01-10 12:57:24 +03:00
refresh: true,
}),
],
});