mirror of
				https://codeberg.org/theamazing0/portfolio.git
				synced 2025-10-30 10:22:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			569 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			569 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // @ts-check
 | |
| import { defineConfig } from "astro/config";
 | |
| 
 | |
| import icon from "astro-icon";
 | |
| 
 | |
| // https://astro.build/config
 | |
| export default defineConfig({
 | |
|   site: "https://portfolio.samvidk.workers.dev",
 | |
|   integrations: [
 | |
|     icon({
 | |
|       include: {
 | |
|         "simple-icons": [
 | |
|           "signal",
 | |
|           "matrix",
 | |
|           "git",
 | |
|           "mastodon",
 | |
|           "github",
 | |
|           "gitlab",
 | |
|           "codeberg",
 | |
|           "devpost",
 | |
|           "linkedin",
 | |
|           "hackclub",
 | |
|         ],
 | |
|         lucide: ["mail", "globe", "rss", "calendar"],
 | |
|       },
 | |
|     }),
 | |
|   ],
 | |
| });
 |