aboutsummaryrefslogtreecommitdiff
path: root/web/pw-frontend/vite.config.js
blob: 7682f941627ccb5299242da776dd2fba7e38c716 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
import nodePolyfills from 'rollup-plugin-polyfill-node'


// https://vitejs.dev/config/
export default defineConfig({
  plugins: [
    svelte(),
    nodePolyfills()
  ],
})