From 59067695f934184c7e6efaa4fc89fbde2f27a7cb Mon Sep 17 00:00:00 2001 From: Furkan Sahin Date: Thu, 21 Jul 2022 07:22:36 -0400 Subject: initial migration, app runs --- vite.config.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 vite.config.js (limited to 'vite.config.js') diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..f8d7061 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,14 @@ +import { defineConfig } from "vite"; +import { svelte } from '@sveltejs/vite-plugin-svelte'; + + +const preprocess = require('svelte-preprocess') + +export default defineConfig({ + plugins: [svelte({ + preprocess: preprocess(), + hot: { + // preserveLocalState + } + })] +}) \ No newline at end of file -- cgit v1.2.3