coracle/vite.config.js

24 lines
513 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'
import { nodePolyfills } from 'vite-plugin-node-polyfills'
2022-11-23 01:28:33 +00:00
export default defineConfig({
resolve: {
alias: {
src: path.resolve(__dirname, 'src'),
}
2022-11-23 01:28:33 +00:00
},
plugins: [
nodePolyfills({
protocolImports: true,
}),
svelte({
onwarn: (warning, handler) => {
if (warning.code.startsWith("a11y-")) return
handler(warning)
},
}),
],
2022-11-23 01:28:33 +00:00
})