This repository has been archived by the owner on Oct 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
142 lines (139 loc) · 3.35 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
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
/* eslint-disable no-useless-escape */
import path from 'path'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import envCompatible from 'vite-plugin-env-compatible'
import { EsLinter, linterPlugin } from 'vite-plugin-linter'
import { VitePWA } from 'vite-plugin-pwa'
import { visualizer } from 'rollup-plugin-visualizer'
import viteSentry from 'vite-plugin-sentry'
import { GitRevisionPlugin } from 'git-revision-webpack-plugin'
const gitRevisionPlugin = new GitRevisionPlugin()
let netlifyConf = []
if (process.env.NETLIFY && process.env.PULL_REQUEST !== 'true') {
netlifyConf = [
viteSentry({
authToken: process.env.SENTRY_AUTH_TOKEN,
org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
release: gitRevisionPlugin.commithash(),
deploy: {
env: process.env.CONTEXT
},
setCommits: {
auto: true
},
sourceMaps: {
include: [
'./dist',
'./dist/assets'
],
ignore: [
'node_modules'
],
urlPrefix: '~/assets'
}
})
]
}
export default defineConfig((configEnv) => ({
define: {
CN_COMMITHASH: JSON.stringify(gitRevisionPlugin.commithash())
},
resolve: {
alias: [
{
find: /^~/,
replacement: ''
},
{
find: '@',
replacement: path.resolve(__dirname, 'src')
}
],
extensions: [
'.mjs',
'.js',
'.ts',
'.jsx',
'.tsx',
'.json',
'.vue'
]
},
plugins: [
linterPlugin({
include: [
'./src/**/*.js',
'./src/**/*.vue'
],
linters: [
new EsLinter({
configEnv,
serveOptions: { clearCacheOnStart: true }
})
]
}),
vue(),
envCompatible(),
VitePWA({
filename: 'service-worker.js',
workbox: {
globPatterns: [
'**\/*.{js,css,html,webmanifest}',
'img\/icons/*'
]
},
manifest: {
name: 'CN Schedule',
short_name: 'Schedule',
description: 'Browse the US TV Schedule for Cartoon Network and Adult Swim',
icons: [
{
src: '/img/icons/android-chrome-192x192.png',
sizes: '192x192',
type: 'image/png'
},
{
src: '/img/icons/android-chrome-256x256.png',
sizes: '256x256',
type: 'image/png'
},
{
src: '/img/icons/android-chrome-384x384.png',
sizes: '384x384',
type: 'image/png'
},
{
src: '/img/icons/android-chrome-512x512.png',
sizes: '512x512',
type: 'image/png'
}
],
theme_color: '#000000',
background_color: '#EC018C',
start_url: '/',
display: 'standalone',
dir: 'ltr',
lang: 'en-US',
categories: [
'entertainment',
'utilities'
],
shortcuts: [
{
name: 'Grid',
description: 'Get a quick view of the schedule for the next days',
url: '/grid'
}
]
}
}),
visualizer(),
...netlifyConf
],
build: {
sourcemap: true,
cssCodeSplit: false // hopefully prevents asking for preloading CSS which has issues on Safari and some Chromium? browser
}
}))