diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-07-21 07:22:36 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-07-21 07:22:36 -0400 |
| commit | 59067695f934184c7e6efaa4fc89fbde2f27a7cb (patch) | |
| tree | aa0673196256ec61544b6acbc3471a81516b5f20 /vite.config.js | |
| parent | b3fdc004706a1501b32372747abc1f4f4b7dd367 (diff) | |
initial migration, app runs
Diffstat (limited to 'vite.config.js')
| -rw-r--r-- | vite.config.js | 14 |
1 files changed, 14 insertions, 0 deletions
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 |
