forked from QwikDev/qwik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.mts
206 lines (199 loc) · 6 KB
/
vite.config.mts
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
import { partytownVite } from '@builder.io/partytown/utils';
import { qwikCity } from '@builder.io/qwik-city/vite';
// import { qwikInsights } from '@builder.io/qwik-labs/vite';
import { qwikReact } from '@builder.io/qwik-react/vite';
import { qwikVite } from '@builder.io/qwik/optimizer';
import path, { resolve } from 'node:path';
import { defineConfig, type Plugin } from 'vite';
import Inspect from 'vite-plugin-inspect';
import { examplesData, playgroundData, rawSource, tutorialData } from './vite.repl-apps';
import { sourceResolver } from './vite.source-resolver';
import tailwindcss from '@tailwindcss/vite';
import shikiRehype from '@shikijs/rehype';
import { transformerMetaHighlight, transformerMetaWordHighlight } from '@shikijs/transformers';
import { transformerColorizedBrackets } from '@shikijs/colorized-brackets';
import type { ShikiTransformer } from '@shikijs/types';
// const PUBLIC_QWIK_INSIGHTS_KEY = loadEnv('', '.', 'PUBLIC').PUBLIC_QWIK_INSIGHTS_KEY;
const docsDir = new URL(import.meta.url).pathname;
// https://github.com/vitejs/vite/issues/15012#issuecomment-1825035992
const muteWarningsPlugin = (warningsToIgnore: string[][]): Plugin => {
const mutedMessages = new Set();
return {
name: 'mute-warnings',
enforce: 'pre',
config: (userConfig) => {
const origOnLog = userConfig.build?.rollupOptions?.onLog;
return {
build: {
rollupOptions: {
onLog(type, warning, defaultHandler) {
if (type === 'warn') {
if (warning.code) {
const muted = warningsToIgnore.find(
([code, message]) => code == warning.code && warning.message.includes(message)
);
if (muted) {
mutedMessages.add(muted.join());
return;
}
}
}
origOnLog ? origOnLog(type, warning, defaultHandler) : defaultHandler(type, warning);
},
},
},
};
},
closeBundle() {
const diff = warningsToIgnore.filter((x) => !mutedMessages.has(x.join()));
if (diff.length > 0) {
this.warn('Some of your muted warnings never appeared during the build process:');
diff.forEach((m) => this.warn(`- ${m.join(': ')}`));
}
},
};
};
function transformerShowEmptyLines(): ShikiTransformer {
return {
line(node) {
if (node.children.length === 0) {
node.children = [{ type: 'text', value: ' ' }];
return node;
}
},
};
}
function transformerMetaShowTitle(): ShikiTransformer {
return {
root(node) {
const meta = this.options.meta?.__raw;
if (!meta) {
return;
}
const titleMatch = meta.match(/title="([^"]*)"/);
if (!titleMatch) {
return;
}
const title = titleMatch[1] ?? '';
if (title.length > 0) {
node.children.unshift({
type: 'element',
tagName: 'div',
properties: {
class: 'shiki-title',
},
children: [{ type: 'text', value: title }],
});
}
meta.replace(titleMatch[0], '');
},
};
}
export default defineConfig(async () => {
const routesDir = resolve('src', 'routes');
return {
dev: {
headers: {
'Cache-Control': 'public, max-age=0',
},
},
preview: {
headers: {
'Cache-Control': 'public, max-age=600',
},
},
resolve: {
alias: [
{
find: '~',
replacement: path.resolve(__dirname, 'src'),
},
{
// HACK: For some reason supabase imports node-fetch but only in CloudFlare build
// This hack is here to prevent the import from happening since we don't need to
// polyfill fetch in the edge.
find: '@supabase/node-fetch',
replacement: path.resolve(__dirname, 'src', 'empty.ts'),
},
{
find: '@docsearch/css',
replacement: path.resolve(__dirname, 'node_modules/@docsearch/css/dist/style.css'),
},
],
},
ssr: {
noExternal: [
'@mui/material',
'@mui/system',
'@emotion/react',
'@algolia/autocomplete-core/dist/esm/resolve',
'@algolia/autocomplete-core',
'@algolia/autocomplete-shared',
'algoliasearch/lite',
'algoliasearch',
'@algolia/autocomplete-core/dist/esm/reshape',
'algoliasearch/dist/algoliasearch-lite.esm.browser',
],
},
plugins: [
// some imported react code has sourcemap issues
muteWarningsPlugin([
['SOURCEMAP_ERROR', "Can't resolve original location of error"],
['MODULE_LEVEL_DIRECTIVE', 'use client'],
]),
rawSource(),
qwikCity({
mdxPlugins: {
rehypeSyntaxHighlight: false,
remarkGfm: true,
rehypeAutolinkHeadings: true,
},
mdx: {
rehypePlugins: [
[
shikiRehype,
{
theme: 'dark-plus',
transformers: [
transformerMetaHighlight(),
transformerMetaWordHighlight(),
transformerColorizedBrackets(),
transformerShowEmptyLines(),
transformerMetaShowTitle(),
],
},
],
],
},
}),
qwikVite(),
partytownVite({
dest: resolve('dist', '~partytown'),
}),
examplesData(routesDir),
playgroundData(routesDir),
tutorialData(routesDir),
sourceResolver(docsDir),
qwikReact(),
Inspect(),
// qwikInsights({ publicApiKey: PUBLIC_QWIK_INSIGHTS_KEY }),
tailwindcss(),
],
optimizeDeps: {
include: ['@docsearch/css'],
},
build: {
sourcemap: true,
rollupOptions: {
output: {
assetFileNames: 'assets/[hash]-[name].[ext]',
},
external: ['@docsearch/css'],
},
},
clearScreen: false,
server: {
port: 3000,
},
};
});