-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathvite.config.ts
44 lines (41 loc) · 1.12 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
import { resolve } from "path";
import { defineConfig } from "vite";
import dts from "vite-plugin-dts";
import cssInjectedByJsPlugin from "vite-plugin-css-injected-by-js";
import react from "@vitejs/plugin-react";
const injectCodeFunction = (cssCode) => {
try {
if (typeof window === "undefined") return;
var elementStyle = document.createElement("style");
elementStyle.appendChild(document.createTextNode(cssCode));
document.head.appendChild(elementStyle);
} catch (e) {
console.error("vite-plugin-css-injected-by-js", e);
}
};
export default defineConfig({
plugins: [
react(),
cssInjectedByJsPlugin({ injectCodeFunction }),
dts({
insertTypesEntry: true,
}),
],
build: {
lib: {
entry: resolve(__dirname, "src/index.tsx"),
name: "react-voice-visualizer",
fileName: "react-voice-visualizer",
},
rollupOptions: {
external: ["react", "react-dom", "react/jsx-runtime"],
output: {
globals: {
react: "React",
"react-dom": "ReactDOM",
"react/jsx-runtime": "react/jsx-runtime",
},
},
},
},
});