diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..790e081 --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,19 @@ +import { fileURLToPath, URL } from "node:url"; + +import { defineConfig } from "vite"; +import { imagetools } from "vite-imagetools"; +import vue from "@vitejs/plugin-vue"; + +// https://vitejs.dev/config/ +export default defineConfig({ + base: "./", + plugins: [vue(), imagetools()], + resolve: { + alias: { + "@": fileURLToPath(new URL("./src", import.meta.url)), + }, + }, + css: { + devSourcemap: true, + }, +});