-
Notifications
You must be signed in to change notification settings - Fork 18
/
vite.config.js
59 lines (58 loc) · 1.79 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
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
import vue from '@vitejs/plugin-vue2'
import VueI18n from '@intlify/unplugin-vue-i18n/vite'
import Components from 'unplugin-vue-components/vite'
import { VuetifyResolver } from 'unplugin-vue-components/resolvers'
export default defineConfig({
resolve: {
alias: {
'@': '/resources/js',
},
},
plugins: [
laravel({
input: [
'resources/css/app.css',
'resources/js/app.js',
'resources/js/auth.js',
'resources/js/trading.js',
'resources/js/overview.js',
'resources/js/main.js',
'resources/js/error.js',
'resources/js/plugins/gt4.js',
'resources/js/plugins/hero-canvas.js'
],
refresh: true,
}),
vue({
template: { transformAssetUrls : {
base: null,
includeAbsolute: false,
}
},
}),
VueI18n({
runtimeOnly: false,
compositionOnly: false,
fullInstall: false,
include: 'js',
}),
Components({
resolvers: [VuetifyResolver()],
}),
],
css: {
preprocessorOptions: {
sass: {
additionalData: [
// Make the variables defined in these files available to all components, without requiring an explicit
// @import of the files themselves
'@import "./resources/sass/theme.scss"',
'@import "./resources/sass/highcharts"',
'', // end with newline
].join('\n'),
},
},
},
});