coracle/vite.config.js

19 lines
432 B
JavaScript
Raw Normal View History

2022-11-23 01:28:33 +00:00
import * as path from 'path'
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: [
{find: 'src', replacement: path.resolve(__dirname, 'src')},
],
},
plugins: [svelte({
onwarn: (warning, handler) => {
if (warning.code.startsWith("a11y-")) return
handler(warning)
},
})],
})