-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.ts
More file actions
44 lines (42 loc) · 1.01 KB
/
vite.config.ts
File metadata and controls
44 lines (42 loc) · 1.01 KB
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 { defineConfig } from 'vite'
import dts from 'vite-plugin-dts';
import banner from 'vite-plugin-banner';
import pkg from './package.json' assert { type: 'json' };
const isLib = process.env.BUILD_LIB === 'true';
const licenseBanner = `
/*!
* @try0/browser-tab-id v${pkg.version}
* (c) 2025 try0 MIT License.
*/
`.trim();
export default defineConfig({
plugins: [
dts({
outDir: 'dist',
rollupTypes: true,
}),
banner(licenseBanner),
],
base: "./",
publicDir: isLib ? false : 'public',
build: isLib ? {
lib: {
entry: 'src/main.ts',
name: 'BrowserTabId',
fileName: (format) => `browser-tab-id.${format}.js`,
},
rollupOptions: {
output: {
exports: 'named',
},
},
target: 'es2022',
minify: true
}
: {
outDir: 'dist-demo',
rollupOptions: {
input: 'index.html'
}
}
})