27 lines
588 B
TypeScript
27 lines
588 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import svgr from "vite-plugin-svgr";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react({ jsxRuntime: "automatic" }), svgr({
|
|
svgrOptions: {
|
|
plugins: ["@svgr/plugin-svgo", "@svgr/plugin-jsx"],
|
|
svgoConfig: {
|
|
floatPrecision: 2,
|
|
},
|
|
},
|
|
// ...
|
|
})],
|
|
worker: {
|
|
rollupOptions: {
|
|
external: ["@codex-storage/sdk-js"],
|
|
output: {
|
|
globals: {
|
|
"@codex-storage/sdk-js": "codex-sdk-js",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|