planetwars.dev/web/pw-frontend/vite.config.js
2021-12-22 13:59:13 +01:00

13 lines
263 B
JavaScript

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()
],
})