poster-design/vite.config.ts

71 lines
1.4 KiB
TypeScript
Raw Normal View History

2023-07-18 07:03:15 +00:00
/*
* @Author: ShawnPhang
* @Date: 2021-08-19 18:30:38
* @Description: Vite配置文件
* @LastEditors: ShawnPhang <site: book.palxp.com>
2023-08-22 16:06:16 +00:00
* @LastEditTime: 2023-08-01 10:46:59
2023-07-18 07:03:15 +00:00
*/
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 },
2024-03-13 16:50:30 +00:00
host: '127.0.0.1'
2023-07-18 07:03:15 +00:00
// proxy: {
// '/api': {
2023-07-20 10:48:46 +00:00
// target: '',
2023-07-18 07:03:15 +00:00
// changeOrigin: true,
// rewrite: (path) => path.replace(/^\/api/, ''),
// },
// },
},
})