LAR_Maintenance/vite.config.js

21 lines
518 B
JavaScript
Raw Normal View History

2024-07-30 08:44:45 +00:00
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
2024-07-30 16:13:21 +00:00
import path from 'path';
2024-07-30 08:44:45 +00:00
export default defineConfig({
plugins: [
laravel({
2024-07-30 16:13:21 +00:00
input: [
'resources/sass/app.scss',
//'resources/css/app.css',
'resources/js/app.js',
],
2024-07-30 08:44:45 +00:00
refresh: true,
}),
],
2024-07-30 16:13:21 +00:00
// resolve: {
// alias: {
// '~bootstrap': path.resolve(__dirname, 'node_modules/bootstrap')
// }
// }
});