mirror of
https://gitee.com/wot-design-uni/wot-design-uni.git
synced 2025-12-06 17:18:40 +08:00
17 lines
347 B
TypeScript
17 lines
347 B
TypeScript
/*
|
|
* @Author: weisheng
|
|
* @Date: 2023-03-21 22:49:24
|
|
* @LastEditTime: 2023-03-29 18:44:48
|
|
* @LastEditors: weisheng
|
|
* @Description:
|
|
* @FilePath: \fant-mini-plus\vite.config.ts
|
|
* 记得注释
|
|
*/
|
|
import { defineConfig } from 'vite'
|
|
import uni from '@dcloudio/vite-plugin-uni'
|
|
|
|
export default defineConfig({
|
|
base: './',
|
|
plugins: [uni()]
|
|
})
|