diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-07-21 08:57:30 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-07-21 08:57:30 -0400 |
| commit | 4d0484132aa2a6baef12a5ed5d3d4c3ca1ad7106 (patch) | |
| tree | 9e6afc515a7b92e9ee89c75888b0a23b02c8735c /vite.config.ts | |
| parent | 59067695f934184c7e6efaa4fc89fbde2f27a7cb (diff) | |
All works. learn source map error and fix it
Diffstat (limited to 'vite.config.ts')
| -rw-r--r-- | vite.config.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..b52fb10 --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,15 @@ +import { defineConfig } from "vite"; +import { svelte } from '@sveltejs/vite-plugin-svelte'; + + +// const preprocess = require('svelte-preprocess') + +export default defineConfig({ + plugins: [svelte()] + // plugins: [svelte({ + // preprocess: preprocess() + // // hot: { + // // // preserveLocalState + // // } + // })] +})
\ No newline at end of file |
