From c2ab7e249985162d753d116ef5ff94e25ddf4582 Mon Sep 17 00:00:00 2001 From: rhpidfyre Date: Sat, 22 Feb 2025 16:35:38 -0500 Subject: [PATCH] vite.config.js --- vite.config.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 vite.config.js diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..d0cc5d7 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,9 @@ +import { defineConfig } from 'vite' +import { createHtmlPlugin } from 'vite-plugin-html' + +export default defineConfig({ + plugins: [createHtmlPlugin({ + minify: true + })], + root: "src", +}) \ No newline at end of file