mirror of
				https://github.com/teamhanko/hanko.git
				synced 2025-10-31 16:47:10 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			431 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			431 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| 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)),
 | |
|     },
 | |
|   },
 | |
| });
 | 
