mirror of
https://github.com/halo-dev/plugin-s3.git
synced 2025-10-14 22:27:11 +00:00
22 lines
518 B
TypeScript
22 lines
518 B
TypeScript
import { fileURLToPath, URL } from "url";
|
|
|
|
import { defineConfig } from "vite";
|
|
import Vue from "@vitejs/plugin-vue";
|
|
import VueJsx from "@vitejs/plugin-vue-jsx";
|
|
import Icons from "unplugin-icons/vite";
|
|
import { HaloUIPluginBundlerKit } from "@halo-dev/ui-plugin-bundler-kit";
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
Vue(),
|
|
VueJsx(),
|
|
Icons({ compiler: "vue3" }),
|
|
HaloUIPluginBundlerKit(),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
"@": fileURLToPath(new URL("./src", import.meta.url)),
|
|
},
|
|
},
|
|
});
|