1
0
Fork 0
mirror of synced 2024-06-29 03:20:34 +12:00
budibase/packages/standard-components/vite.config.js
2021-04-16 16:00:10 +01:00

29 lines
601 B
JavaScript

import svelte from "@sveltejs/vite-plugin-svelte"
const path = require("path")
export default ({ mode }) => {
const isProduction = mode === "production"
return {
build: {
lib: {
entry: path.resolve(__dirname, "src/index.js"),
name: "standard-components",
formats: ["es"],
},
minify: isProduction,
},
plugins: [
svelte({
hot: !isProduction,
emitCss: true,
}),
],
resolve: {
dedupe: ["svelte", "svelte/internal"],
},
rollupOptions: {
external: ["svelte", "svelte/internal"],
},
}
}