-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
65 lines (64 loc) · 1.75 KB
/
vite.config.ts
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
// https://github.com/vitejs/vite/discussions/4085
// https://dev.to/leon/vite-lit-and-storybook-43f
import { resolve } from 'path';
import { defineConfig, normalizePath } from "vite";
import { viteStaticCopy } from 'vite-plugin-static-copy';
// https://vitejs.dev/config/
export default defineConfig(({ command, mode }) => {
if (mode === 'demo') {
return {
base: "tei-processing/seed-frontend-components",
build: {
outDir: "demo",
assetsDir: "examples",
rollupOptions: {
// external: mode === "production" ? "" : /^lit/,
input: {
// add examples
examples: resolve(__dirname, 'index.html'),
synopsis: resolve(__dirname, 'examples/synopsis.html'),
figures: resolve(__dirname, 'examples/figures.html'),
xsltRest: resolve(__dirname, 'examples/xslt-rest.html'),
xsltSef: resolve(__dirname, 'examples/xslt-sef.html'),
}
}
},
publicDir: false, // do not copy /public
plugins: [
viteStaticCopy({
targets: [
{
src: normalizePath(resolve(__dirname, "examples/*.json")),
dest: "examples",
},
{
src: normalizePath(resolve(__dirname, "examples/*.tei*html")),
dest: "examples",
},
{
src: normalizePath(resolve(__dirname, "examples/transformation-api/*")),
dest: "examples/transformation-api",
},
{
src: normalizePath(resolve(__dirname, "examples/transformation-resources/*")),
dest: "examples/transformation-resources",
},
],
})
],
}
}
return {
build: {
lib: {
entry: resolve(__dirname, "./src/main.ts"),
name: "SeedFrontendComponents",
fileName: "seed-frontend-components",
formats: ["es", "cjs"],
},
rollupOptions: {
// external: mode === "production" ? "" : /^lit/,
}
},
}
});