mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 10:26:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			732 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			732 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| module.exports = {
 | |
|   packagerConfig: {
 | |
|     asar: true,
 | |
|     // icon will break once we add .dmg support, since the .ico & .icns have to be in same dir (see https://www.electronforge.io/guides/create-and-add-icons#windows-and-macos)
 | |
|     icon: "./images/app-icons/win/icon"
 | |
|   },
 | |
|   rebuildConfig: {},
 | |
|   makers: [
 | |
|     {
 | |
|       name: '@electron-forge/maker-squirrel',
 | |
|       config: {
 | |
|         iconUrl: "https://raw.githubusercontent.com/TriliumNext/Notes/develop/images/app-icons/win/icon.ico",
 | |
|         setupIcon: "./images/app-icons/win/icon.ico",
 | |
|         loadingGif: "./images/app-icons/win/setup-banner.gif"
 | |
|       }
 | |
|     }
 | |
|   ],
 | |
|   plugins: [
 | |
|     {
 | |
|       name: '@electron-forge/plugin-auto-unpack-natives',
 | |
|       config: {},
 | |
|     },
 | |
|   ],
 | |
| };
 |