forked from liaocp666/Jasmine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
41 lines (40 loc) · 867 Bytes
/
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
import { defineConfig } from "vite";
import { fileURLToPath } from "url";
import path from "path";
import prismjs from "vite-plugin-prismjs";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
prismjs({
languages: [
"java",
"javascript",
"css",
"php",
"markup",
"sql",
"c",
"c#",
"yaml",
"json",
"go",
"bash",
"shell",
"python",
],
plugins: ["line-numbers", "show-language", "copy-to-clipboard"],
theme: "default",
css: true,
}),
],
build: {
outDir: fileURLToPath(new URL("./assets/dist", import.meta.url)),
emptyOutDir: true,
lib: {
entry: path.resolve(__dirname, "src/main.ts"),
name: "jasmine",
fileName: "jasmine",
formats: ["iife"],
},
},
});