29 lines
664 B
JavaScript
29 lines
664 B
JavaScript
import { defineConfig } from 'vite';
|
|
import laravel from 'laravel-vite-plugin';
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
laravel({
|
|
input: ['resources/css/app.scss', 'resources/js/app.js'],
|
|
refresh: true,
|
|
}),
|
|
],
|
|
css: {
|
|
preprocessorOptions: {
|
|
scss: {
|
|
silenceDeprecations: [
|
|
'import',
|
|
'global-builtin',
|
|
'color-functions',
|
|
'if-function',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
server: {
|
|
watch: {
|
|
ignored: ['**/storage/framework/views/**'],
|
|
},
|
|
},
|
|
});
|