-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.ts
More file actions
42 lines (40 loc) · 905 Bytes
/
Copy pathvite.config.ts
File metadata and controls
42 lines (40 loc) · 905 Bytes
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
import react from '@vitejs/plugin-react'
import unfonts from 'unplugin-fonts/vite'
import { defineConfig } from 'vite'
import renderdoc from './src/build-tools/rolldown-plugin-renderdoc.js'
// https://vitejs.dev/config/
export default defineConfig({
assetsInclude: ['**/*.py'],
resolve: {
// remove legacy browser support with mui-modern
conditions: ['mui-modern', 'module', 'browser', 'development|production'],
},
plugins: [
react(),
renderdoc({
include: '*.@(md|rst)',
}),
unfonts({
fontsource: {
families: [
{
name: 'Iosevka Aile',
// Needed weights: https://mui.com/material-ui/react-typography/
weights: [300, 400, 500, 700],
},
{
name: 'Iosevka',
weights: [400, 700],
},
],
},
}),
],
build: { sourcemap: true },
server: {
fs: {
// Otherwise problem with loading font files
strict: false,
},
},
})