-
Notifications
You must be signed in to change notification settings - Fork 302
/
vite.config.ts
170 lines (166 loc) · 4.89 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
import vue from '@vitejs/plugin-vue';
import { resolve, dirname } from 'path';
import { fileURLToPath } from 'url';
import AutoImport from 'unplugin-auto-import/vite';
import Components from 'unplugin-vue-components/vite';
import { loadEnv, Plugin } from 'vite';
import { defineConfig } from 'vitest/config';
import { version as pkgVersion } from './package.json';
import { nodePolyfills } from 'vite-plugin-node-polyfills';
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite';
import { createHtmlPlugin } from 'vite-plugin-html';
import rollupPolyfillNode from 'rollup-plugin-polyfill-node';
import type { ViteSentryPluginOptions } from 'vite-plugin-sentry';
import viteSentry from 'vite-plugin-sentry';
import analyze from 'rollup-plugin-analyzer';
import { visualizer } from 'rollup-plugin-visualizer';
import viteImagemin from 'vite-plugin-imagemin';
export default defineConfig(({ mode }) => {
const envConfig = loadEnv(mode, process.cwd());
const isBuildAnalysis = process.env.BUILD_ANALIZE;
const plugins = [
vue(),
createHtmlPlugin({
minify: false,
inject: {
data: {
VITE_FATHOM_SITE_ID: envConfig.VITE_FATHOM_SITE_ID,
},
},
}),
//cast to Plugin to avoid TS errors in defineConfig
nodePolyfills() as Plugin,
AutoImport({
imports: ['vue', 'vue-router'],
eslintrc: {
enabled: true,
},
}),
Components({
dirs: ['src/components/_global/**'],
extensions: ['vue'],
dts: true,
}),
VueI18nPlugin({
/* options */
// locale messages resource pre-compile option
include: resolve(
dirname(fileURLToPath(import.meta.url)),
'./src/locales/**'
),
}),
viteImagemin({}),
];
if (mode === 'production' && envConfig.VITE_SENTRY_AUTH_TOKEN) {
/**
* Configure sentry plugin
*/
const sentryConfig: ViteSentryPluginOptions = {
url: 'https://sentry.io',
authToken: envConfig.VITE_SENTRY_AUTH_TOKEN,
org: 'balancer-labs',
project: 'app',
release: `frontend-v2@${pkgVersion}`,
deploy: {
env: 'production',
},
setCommits: {
auto: true,
},
sourceMaps: {
include: ['./dist/assets'],
ignore: ['node_modules', 'vite.config.ts'],
urlPrefix: '~/assets',
},
};
plugins.push(viteSentry(sentryConfig));
}
return {
define: {
'process.env': {},
},
plugins: plugins,
resolve: {
alias: {
'@': resolve(__dirname, './src'),
'@types': resolve(__dirname, './types'),
'@tests': resolve(__dirname, './tests'),
// Allows to import tailwind.config.js from useTailwind.ts
// Check: https://github.com/tailwindlabs/tailwindcss.com/issues/765
'tailwind.config.js': resolve(__dirname, 'tailwind.config.js'),
'button-options': resolve(
__dirname,
'src/components/_global/BalBtn/button-options'
),
},
},
optimizeDeps: {
include: [
'tailwind.config.js',
'button-options',
'color',
'mersenne-twister',
],
},
server: {
port: 8080,
headers: {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Methods': 'GET',
'Access-Control-Allow-Headers':
'X-Requested-With, content-type, Authorization',
},
strictPort: true,
host: true,
},
preview: {
port: 8080,
host: true,
strictPort: true,
},
build: {
sourcemap: isBuildAnalysis ? false : true,
minify: true,
rollupOptions: {
plugins: [
isBuildAnalysis ? analyze({ summaryOnly: false }) : null,
isBuildAnalysis
? visualizer({
open: true,
template: 'treemap',
brotliSize: true,
gzipSize: true,
filename: './stats.html',
})
: null,
// https://stackoverflow.com/a/72440811/10752354
rollupPolyfillNode(),
],
},
chunkSizeWarningLimit: 900,
commonjsOptions: {
// Allows to import tailwind.config.js from useTailwind.ts
// Check: https://github.com/tailwindlabs/tailwindcss.com/issues/765
include: [
'tailwind.config.js',
'button-options',
'node_modules/**',
'src/components/_global/BalBtn/button-options.js',
],
},
},
test: {
globals: true,
environment: 'happy-dom',
setupFiles: [
'tests/vitest/setup-vitest.ts',
// https://github.com/jest-community/jest-extended/tree/main/examples/typescript/all
'jest-extended/all',
],
coverage: {
reporter: process.env.SILENT_TESTS ? ['lcov'] : ['text', 'lcov'],
}, // lcov reporter is used by IDE coverage extensions
include: ['./src/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
},
};
});