This repository has been archived on 2024-09-18. You can view files and clone it, but cannot push or open issues or pull requests.
elder_inst_Miniprogram/vite.config.js

21 lines
399 B
JavaScript
Raw Permalink Normal View History

2024-08-22 01:43:39 +08:00
import { defineConfig } from 'vite'
import uni from '@dcloudio/vite-plugin-uni'
export default defineConfig(() => {
return {
base: './',
build: {
minify: true,
outDir: 'dist',
},
server: {
port: '3002'
},
plugins: [
uni()
],
exclude:[
/\/README\.md$/,
]
}
})