26 lines
553 B
TypeScript
26 lines
553 B
TypeScript
|
|
import { fileURLToPath, URL } from 'node:url'
|
||
|
|
|
||
|
|
import { defineConfig } from 'vite'
|
||
|
|
import Components from '@uni-helper/vite-plugin-uni-components'
|
||
|
|
import { WotResolver } from '@uni-helper/vite-plugin-uni-components/resolvers'
|
||
|
|
import Uni from '@uni-helper/plugin-uni'
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
resolve: {
|
||
|
|
alias: {
|
||
|
|
'@': fileURLToPath(new URL('./src', import.meta.url))
|
||
|
|
}
|
||
|
|
},
|
||
|
|
plugins: [
|
||
|
|
Components({
|
||
|
|
dts: true,
|
||
|
|
resolvers: [WotResolver()]
|
||
|
|
}),
|
||
|
|
// https://uni-helper.js.org/plugin-uni
|
||
|
|
Uni(),
|
||
|
|
],
|
||
|
|
|
||
|
|
})
|
||
|
|
|
||
|
|
|