2025-01-21 10:07:52 +08:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
import vue from '@vitejs/plugin-vue'
|
2025-03-13 23:57:46 +08:00
|
|
|
import Components from 'unplugin-vue-components/vite';
|
|
|
|
|
import { VantResolver } from 'unplugin-vue-components/resolvers';
|
|
|
|
|
|
2025-01-21 10:07:52 +08:00
|
|
|
|
|
|
|
|
// https://vite.dev/config/
|
|
|
|
|
export default defineConfig({
|
2025-03-13 23:57:46 +08:00
|
|
|
plugins: [
|
|
|
|
|
vue(),
|
|
|
|
|
Components({
|
|
|
|
|
resolvers: [VantResolver()],
|
|
|
|
|
}),
|
|
|
|
|
],
|
2025-01-21 10:07:52 +08:00
|
|
|
})
|