mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-17 17:01:37 +00:00
18 lines
366 B
JavaScript
18 lines
366 B
JavaScript
import { defineConfig } from 'vite';
|
|
import laravel from 'laravel-vite-plugin';
|
|
|
|
export default defineConfig({
|
|
build: {
|
|
chunkSizeWarningLimit: 500,
|
|
},
|
|
plugins: [
|
|
laravel({
|
|
input: [
|
|
'resources/css/app.css',
|
|
'resources/js/app.js',
|
|
],
|
|
refresh: true,
|
|
}),
|
|
],
|
|
});
|