mirror of
https://gitee.com/ONuyoah/vue3-uni-guahao.git
synced 2026-06-05 18:25:42 +08:00
11 lines
202 B
TypeScript
11 lines
202 B
TypeScript
import { defineConfig } from 'vite';
|
|
import uni from '@dcloudio/vite-plugin-uni';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [uni()],
|
|
define: {
|
|
'process.env': {},
|
|
},
|
|
});
|