-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathvite.config.ts
64 lines (63 loc) · 1.83 KB
/
vite.config.ts
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
import path from 'path'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import tailwind from 'tailwindcss'
import autoprefixer from 'autoprefixer'
import monacoEditorPlugin from 'vite-plugin-monaco-editor'
export default defineConfig({
css: {
postcss: {
plugins: [tailwind(), autoprefixer()]
}
},
plugins: [
vue(),
monacoEditorPlugin({
customWorkers: [
{
label: 'json',
entry: 'monaco-editor/esm/vs/language/json/json.worker'
},
{
label: 'css',
entry: 'monaco-editor/esm/vs/language/css/css.worker'
},
{
label: 'html',
entry: 'monaco-editor/esm/vs/language/html/html.worker'
},
{
label: 'typescript',
entry: 'monaco-editor/esm/vs/language/typescript/ts.worker'
},
{
label: 'editor',
entry: 'monaco-editor/esm/vs/editor/editor.worker'
}
],
publicPath: 'monaco-editor/min/worker'
})
],
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
},
build: {
lib: {
entry: './packages/index.ts',
name: 'ViewShadcnUI',
fileName: (format) => `view-shadcn-ui.${ format }.ts`,
formats: ['es', 'umd']
},
rollupOptions: {
external: ['vue', '../dist/view-shadcn-ui.min.css', 'monaco-editor'],
output: {
globals: {
vue: 'Vue',
'monaco-editor': 'monaco'
}
}
}
}
})