-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathvite.config.ts
55 lines (54 loc) · 1.17 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
import path from 'path'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import { visualizer } from 'rollup-plugin-visualizer'
import analyze from 'rollup-plugin-analyzer'
import externalGlobals from 'rollup-plugin-external-globals'
import { resolve } from 'path'
// https://vitejs.dev/config/
export default defineConfig({
build: {
lib: {
entry: path.resolve(__dirname, 'src/main.ts'),
name: 'ispeak'
},
cssCodeSplit: false,
target: 'modules',
terserOptions: {
compress: {
drop_console: true
}
}
},
esbuild: {
pure: ['console.log', 'debugger']
},
css: {
preprocessorOptions: {
scss: {
charset: false,
additionalData: `@import "@/styles/function.scss";`
}
}
},
plugins: [
vue(),
vueJsx(),
visualizer(),
analyze({ summaryOnly: true }),
externalGlobals({
'highlight.js': 'hljs',
marked: 'marked',
'@waline/client': 'Waline'
})
],
resolve: {
alias: {
'@': resolve(__dirname, 'src') // 设置 `@` 指向 `src` 目录
}
},
server: {
port: 5678
}
})