mirror of
https://github.com/palxiao/poster-design
synced 2024-11-22 07:39:41 +00:00
70 lines
1.4 KiB
TypeScript
70 lines
1.4 KiB
TypeScript
/*
|
|
* @Author: ShawnPhang
|
|
* @Date: 2021-08-19 18:30:38
|
|
* @Description: Vite配置文件
|
|
* @LastEditors: ShawnPhang <site: book.palxp.com>
|
|
* @LastEditTime: 2023-08-01 10:46:59
|
|
*/
|
|
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import path from 'path'
|
|
import viteCompression from 'vite-plugin-compression'
|
|
import ElementPlus from 'unplugin-element-plus/vite'
|
|
|
|
const resolve = (...data: string[]) => path.resolve(__dirname, ...data)
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
// base: '/web',
|
|
plugins: [
|
|
vue(),
|
|
viteCompression({
|
|
verbose: true,
|
|
disable: false,
|
|
threshold: 10240,
|
|
algorithm: 'gzip',
|
|
ext: '.gz',
|
|
}),
|
|
ElementPlus({
|
|
// options
|
|
}),
|
|
],
|
|
build: {
|
|
minify: 'terser',
|
|
terserOptions: {
|
|
compress: {
|
|
drop_console: true,
|
|
drop_debugger: true,
|
|
},
|
|
},
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@': resolve('src'),
|
|
'~data': resolve('src/assets/data'),
|
|
},
|
|
},
|
|
css: {
|
|
preprocessorOptions: {
|
|
less: {
|
|
modifyVars: {
|
|
color: `true; @import "./src/assets/styles/color.less";`,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
define: {
|
|
'process.env': process.env,
|
|
},
|
|
server: {
|
|
hmr: { overlay: false },
|
|
// proxy: {
|
|
// '/api': {
|
|
// target: '',
|
|
// changeOrigin: true,
|
|
// rewrite: (path) => path.replace(/^\/api/, ''),
|
|
// },
|
|
// },
|
|
},
|
|
})
|