53 lines
1.8 KiB
TypeScript
53 lines
1.8 KiB
TypeScript
|
import { defineConfig } from 'vite'
|
||
|
import Uni from '@dcloudio/vite-plugin-uni'
|
||
|
import UniHelperManifest from '@uni-helper/vite-plugin-uni-manifest'
|
||
|
import UniHelperPages from '@uni-helper/vite-plugin-uni-pages'
|
||
|
import UniHelperLayouts from '@uni-helper/vite-plugin-uni-layouts'
|
||
|
import UniHelperComponents from '@uni-helper/vite-plugin-uni-components'
|
||
|
import AutoImport from 'unplugin-auto-import/vite'
|
||
|
import { WotResolver } from '@uni-helper/vite-plugin-uni-components/resolvers'
|
||
|
|
||
|
// https://vitejs.dev/config/
|
||
|
export default async () => {
|
||
|
const UnoCSS = (await import('unocss/vite')).default
|
||
|
|
||
|
return defineConfig({
|
||
|
plugins: [
|
||
|
// https://github.com/uni-helper/vite-plugin-uni-manifest
|
||
|
UniHelperManifest(),
|
||
|
// https://github.com/uni-helper/vite-plugin-uni-pages
|
||
|
UniHelperPages({
|
||
|
dts: 'src/uni-pages.d.ts',
|
||
|
}),
|
||
|
// https://github.com/uni-helper/vite-plugin-uni-layouts
|
||
|
UniHelperLayouts(),
|
||
|
// https://github.com/uni-helper/vite-plugin-uni-components
|
||
|
UniHelperComponents({
|
||
|
dts: 'src/components.d.ts',
|
||
|
directoryAsNamespace: true,
|
||
|
resolvers: [WotResolver()],
|
||
|
}),
|
||
|
Uni(),
|
||
|
// https://github.com/antfu/unplugin-auto-import
|
||
|
AutoImport({
|
||
|
imports: ['vue', '@vueuse/core', 'uni-app'],
|
||
|
dts: 'src/auto-imports.d.ts',
|
||
|
dirs: ['src/composables', 'src/stores', 'src/utils'],
|
||
|
vueTemplate: true,
|
||
|
}),
|
||
|
// https://github.com/antfu/unocss
|
||
|
// see unocss.config.ts for config
|
||
|
UnoCSS(),
|
||
|
],
|
||
|
server: {
|
||
|
proxy: {
|
||
|
'/api/v1': {
|
||
|
target: 'https://6m4685017o.goho.co', // 本地接口地址
|
||
|
changeOrigin: true,
|
||
|
// rewrite: path => path.replace(/^\/api/, ''), // 将请求路径中的 '/api' 替换为空
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
})
|
||
|
}
|