forked from mskocik/svelty-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
40 lines (38 loc) · 876 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
import { sveltekit } from '@sveltejs/kit/vite';
import { svelte } from '@sveltejs/vite-plugin-svelte';
import { defineConfig } from 'vite';
import { nodePolyfills } from 'vite-plugin-node-polyfills';
export default ({ mode }) => {
return mode === 'ce'
? defineConfig({
plugins: [
svelte({
emitCss: true
}),
],
build: {
rollupOptions: {
output: {
// file: 'svelty-picker.js',
format: 'esm',
exports: 'named'
},
},
outDir: 'ce',
lib: {
entry: "src/lib/index.js",
formats: ['iife'],
name: 'SveltyPicker',
}
},
})
: defineConfig({
plugins: [nodePolyfills({
protocolImports: false
}), sveltekit()],
optimizeDeps: {
exclude: ['@sveltejs/site-kit', '@sveltejs/repl']
},
ssr: { noExternal: ['@sveltejs/site-kit', '@sveltejs/repl'] },
});
};