25 lines
399 B
JavaScript
25 lines
399 B
JavaScript
import { defineConfig } from 'vite'
|
|
import vue from '@vitejs/plugin-vue'
|
|
import path from 'path'
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
build: {
|
|
terserOptions:{
|
|
compress:{
|
|
drop_console:true,
|
|
drop_debugger:true,
|
|
}
|
|
}
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, './src')
|
|
}
|
|
},
|
|
server: {
|
|
port: 80,
|
|
open: true
|
|
}
|
|
})
|