-
Notifications
You must be signed in to change notification settings - Fork 25
/
vite.config.examples.js
37 lines (36 loc) · 1019 Bytes
/
vite.config.examples.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
import { defineConfig } from 'vite'
// import vue from '@vitejs/plugin-vue' // only for vue 3
import { createVuePlugin as vue } from "vite-plugin-vue2";
const path = require("path");
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
build: {
outDir: path.resolve(__dirname, 'example/'),
lib: {
entry: path.resolve(__dirname, 'src/main.js'),
name: 'FormVuelar',
fileName: (format) => `examples.${format}.js`
},
rollupOptions: {
// make sure to externalize deps that shouldn't be bundled
output: {
dir: path.resolve(__dirname, 'example/js/'),
// Provide global variables to use in the UMD build
// for externalized deps
globals: {
vue: 'Vue'
},
assetFileNames: (assetInfo) => {
if (assetInfo.name == 'style.css')
return 'examples.css';
return assetInfo.name;
},
}
}
}
});