generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
48 lines (46 loc) · 1.4 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
import { defineConfig, splitVendorChunkPlugin } from 'vite';
import laravel from 'laravel-vite-plugin';
import vue from '@vitejs/plugin-vue';
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'
// Vite configuration object
let config = {
build: {
outDir: "public/sales-management",
}, plugins: [splitVendorChunkPlugin(), laravel({
publicDirectory: "public",
buildDirectory: "sales-management", // ako ovog nema, onda na npm run build woff2 fajlovi od fontawsomea gledaju u krivi dir
hotFile: "public/sales-management/hot",
input: ['src/resources/scss/light.scss', 'src/resources/js/app.js',],
refresh: true
}), vue({
template: {
transformAssetUrls: {
base: null, includeAbsolute: false,
},
},
}), VueI18nPlugin({ /* options */}),], resolve: {
alias: {
'@': '/src/resources/js',
'~bootstrap': 'bootstrap',
'~@fortawesome': '@fortawesome',
'~simplebar': 'simplebar',
'~notyf': 'notyf',
'~dragula': 'dragula'
}
}
}
export default defineConfig(({command}) => {
if (command === 'build') {
return {
...config
}
} else {
// command === 'dev'
return {
...config,
define: {
global: "window"
}
}
}
})