-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
71 lines (68 loc) · 1.74 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
import type { SentryReactRouterBuildOptions } from '@sentry/react-router'
import path from 'node:path'
import process from 'node:process'
import { reactRouter } from '@react-router/dev/vite'
import { sentryReactRouter } from '@sentry/react-router'
import tailwindcss from '@tailwindcss/vite'
import { defineConfig } from 'vite'
import tsconfigPaths from 'vite-tsconfig-paths'
import svgSpriteTypePlugin from './app/svg/svgSpritePlugin'
const MODE = process.env.NODE_ENV
const sentryConfig: SentryReactRouterBuildOptions = {
authToken: process.env.SENTRY_AUTH_TOKEN,
org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
release: {
name: process.env.COMMIT_SHA,
},
unstable_sentryVitePluginOptions: {
release: {
name: process.env.COMMIT_SHA,
setCommits: {
auto: true,
},
},
sourcemaps: {
filesToDeleteAfterUpload: ['./build/**/*.map'],
},
},
}
export default defineConfig(config => ({
build: {
rollupOptions: config.isSsrBuild
? {
input: './server/app.ts',
}
: undefined,
assetsInlineLimit: (source: string) => {
if (
source.endsWith('sprite.svg')
|| source.endsWith('favicon.svg')
|| source.endsWith('apple-touch-icon.png')
) {
return false
}
},
sourcemap: true,
},
sentryConfig,
plugins: [
tailwindcss(),
reactRouter(),
tsconfigPaths(),
svgSpriteTypePlugin({
spriteFilePath: './app/svg/sprite.svg',
}),
MODE === 'production' && process.env.SENTRY_AUTH_TOKEN
? sentryReactRouter(sentryConfig, config)
: null,
],
optimizeDeps: {
exclude: ['@node-rs/argon2'],
},
resolve: {
alias: {
'~': path.resolve(__dirname, './app'),
},
},
}))