chore: moved exampled to frontend

This commit is contained in:
Felix Dubrownik
2023-03-03 14:11:13 +01:00
parent 541f94131a
commit b9fa81f76b
134 changed files with 22 additions and 40368 deletions

View File

@ -0,0 +1,20 @@
import { fileURLToPath, URL } from "node:url";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue({
template: {
compilerOptions: { isCustomElement: (tag) => tag.startsWith("hanko-") },
},
}),
],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
});