-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
48 lines (47 loc) · 1.3 KB
/
vite.config.ts
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
/// <reference types="vitest" />
/// <reference types="vite/client" />
import { defineConfig } from 'vite';
import laravel from 'laravel-vite-plugin';
import vue from '@vitejs/plugin-vue';
import path from 'path';
export default defineConfig({
test: {
environment: 'jsdom',
setupFiles: ['./resources/js/mocks/setup.ts'],
coverage: {
exclude: ['vendor/**'],
reporter: ['text', 'json', 'html'],
},
},
resolve: {
alias: {
vue: 'vue/dist/vue.esm-bundler.js',
'@': path.resolve(__dirname, './resources/js'),
},
},
plugins: [
vue({
template: {
transformAssetUrls: {
base: null,
includeAbsolute: false,
},
},
}),
laravel({
input: [
'resources/css/app.css',
'resources/js/app.js',
'resources/js/ui/web/index.ts',
'resources/js/ui/main.ts',
'resources/js/clientScripts/inventory.ts',
'resources/js/backgroundScroller.ts',
'resources/js/clientScripts/sidebar.ts',
],
refresh: false,
}),
],
build: {
target: 'ES2022',
},
});