shiny new gancio-event[s] webcomponents!

This commit is contained in:
lesion
2021-11-26 14:41:34 +01:00
parent 167e6e6dbe
commit d20eb16b96
11 changed files with 653 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
// https://vitejs.dev/config/
export default defineConfig({
build: {
lib: {
entry: './src/main.js',
name: 'GancioEvents'
}
},
plugins: [svelte({compilerOptions: { customElement: true }})]
})