-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
31 lines (30 loc) · 891 Bytes
/
vite.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import {
defineConfig
} from 'vite';
import laravel from 'laravel-vite-plugin';
import vue from '@vitejs/plugin-vue';
const path = require('path') // <-- require path from node
export default defineConfig({
plugins: [
laravel({
// edit the first value of the array input to point to our new sass files and folder.
input: ['resources/scss/admin.scss', 'resources/js/admin.js', 'resources/scss/guest.scss', 'resources/js/guest.js'],
refresh: true,
}),
vue({
template:{
transformAssetUrls:{
base:null,
includeAbsolute:false
}
}
})
],
// Add resolve object and aliases
resolve: {
alias: {
'~bootstrap': path.resolve(__dirname, 'node_modules/bootstrap'),
'~resources': '/resources/'
}
}
});