-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
69 lines (65 loc) · 1.45 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
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import { plugin as vite_plugin_markdown } from "vite-plugin-markdown";
import showdown from "showdown";
import showdown_highlight from "showdown-highlight";
import path from "path";
const syntax_highlight_config =
{
extensions:
[
showdown_highlight(
{
pre: true,
auto_detection: true
})
]
};
const markdown_converter = new showdown.Converter(syntax_highlight_config);
markdown_converter.setOption("noHeaderId", "true");
const markdown_options =
{
mode: "vue",
markdown: (body) => markdown_converter.makeHtml(body)
};
export default defineConfig(
{
root: "./website/",
build:
{
outDir: "../build/",
emptyOutDir: "../build/"
},
plugins:
[
vue(),
vite_plugin_markdown(markdown_options)
],
resolve:
{
alias:
{
"~bootstrap": path.resolve(__dirname, "node_modules/bootstrap"),
"~highlight.js": path.resolve(__dirname, "node_modules/highlight.js"),
'@/': path.resolve(__dirname, './src')
}
},
server:
{
port: 8080,
strictPort: true,
proxy:
{
"/api": "http://localhost:8081",
"/database": "http://localhost:8081"
},
watch:
{
usePolling: true
}
},
define:
{
global: {}
},
})