From b690a635169ea3bcb545e32138ede62edf008832 Mon Sep 17 00:00:00 2001 From: Sebin Nyshkim Date: Mon, 26 Sep 2022 17:11:27 +0200 Subject: [PATCH] feat: add vite config --- vite.config.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 vite.config.ts 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, + }, +});