-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
74 lines (72 loc) · 1.96 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import vue from '@vitejs/plugin-vue';
import laravel from 'laravel-vite-plugin';
import AutoImport from 'unplugin-auto-import/vite';
import IconsResolver from 'unplugin-icons/resolver';
import Icons from 'unplugin-icons/vite';
import Components from 'unplugin-vue-components/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [
laravel({
input: 'resources/js/app.js',
refresh: true,
}),
vue({
template: {
transformAssetUrls: {
base: null,
includeAbsolute: false,
},
},
}),
AutoImport({
imports: [
'vue',
{
'@inertiajs/vue3': [
'router',
'usePage',
'useForm',
'Link',
'Inertia'
]
}
]
}),
Components({
dirs: [
'./resources/js/Components',
'./resources/js/Layouts',
'./resources/js/Pages',
'./resources/js/Pages/Auth',
'./resources/js/Pages/Profile',
'./resources/js/Pages/Profile/Partials',
],
extensions: [
'vue'
],
directoryAsNamespace: true,
deep: true,
resolvers: [
IconsResolver(),
(name) => {
if (name === 'Head') {
return {
importName: 'Head',
path: '@inertiajs/vue3'
}
}
if (name === 'Link') {
return {
importName: 'Link',
path: '@inertiajs/vue3'
}
}
}
]
}),
Icons({
autoInstall: true
}),
],
});