aboutsummaryrefslogtreecommitdiff
path: root/vite.config.ts
blob: b52fb10726d80415c88300c148cd1cff11772314 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
  //   // }
  // })]
})