-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathvite.config.js
69 lines (67 loc) · 1.64 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import Components from 'unplugin-vue-components/vite';
import path from 'node:path';
import { fileURLToPath } from 'node:url';
const filename = fileURLToPath(import.meta.url);
const dirname = path.dirname(filename);
export default defineConfig({
server: {
fs: {
allow: ['..'],
},
},
plugins: [
vue({
style: {
filename: './style.css',
},
}),
Components({
dirs: ['src'],
extensions: ['vue'],
directoryAsNamespace: true,
globalNamespaces: ['global'],
include: [/\.vue$/, /\.vue\?vue/, /\.md$/],
exclude: [/node_modules/, /\.git/],
resolvers: [],
}),
],
build: {
lib: {
entry: path.resolve(dirname, 'src/index.ts'),
name: 'components',
// fileName: (format) => `my-lib.${format}.js`
// formats: ["es"],
},
sourcemap: true,
rollupOptions: {
manualChunks: (id) => {
if (id.includes('node_modules')) {
return 'vendor';
}
if (id.includes('composables')) {
return 'composables';
}
// return path.parse(id).name;
},
external: ['vue'],
output: {
minifyInternalExports: false,
chunkFileNames: '[name].js',
// Provide global variables to use in the UMD build
// for externalized deps
globals: {
vue: 'Vue',
},
},
},
},
resolve: {
alias: {
'@': path.resolve(dirname, '/'),
'@components': path.resolve(dirname, 'src'),
'@composables': path.resolve(dirname, '../composables/src/'),
},
},
});