22 lines
509 B
JavaScript
Executable File
22 lines
509 B
JavaScript
Executable File
import { defineConfig } from 'vite';
|
|
import laravel from 'laravel-vite-plugin';
|
|
import path from 'path'
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
laravel({
|
|
input: [
|
|
'resources/scss/app.scss',
|
|
'resources/js/app.js',
|
|
'resources/js/siteRequests.js'
|
|
],
|
|
refresh: true,
|
|
}),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'~bootstrap': path.resolve(__dirname, 'node_modules/bootstrap'),
|
|
}
|
|
},
|
|
});
|