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.
|
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$/,
|
|
]
|
|
}
|
|
}) |