-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
47 lines (45 loc) · 1.3 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
import { defineConfig } from "vite";
import { sveltekit } from "@sveltejs/kit/vite";
import * as path from 'path';
// @ts-expect-error process is a nodejs global
const host = process.env.TAURI_DEV_HOST;
/** @type {import('vite').UserConfig} */
export default defineConfig(async () => ({
plugins: [sveltekit()],
clearScreen: false,
optimizeDeps: {
include: [
'codemirror',
'@codemirror/state',
'@codemirror/view',
'@codemirror/language',
'@codemirror/commands',
'@codemirror/autocomplete',
'@codemirror/lint'
],
},
resolve: {
alias: {
'codemirror': path.resolve(
__dirname,
'./node_modules/codemirror/dist/index.cjs'
),
'@codemirror/state': path.resolve(
__dirname,
'./node_modules/@codemirror/state/dist/index.cjs'
),
'@codemirror/view': path.resolve(
__dirname,
'./node_modules/@codemirror/view/dist/index.cjs'
),
'@codemirror/language': path.resolve(
__dirname,
'./node_modules/@codemirror/language/dist/index.cjs'
),
'@codemirror/commands': path.resolve(
__dirname,
'./node_modules/@codemirror/commands/dist/index.cjs'
)
}
}
}));