fix path for system tray
Before Width: | Height: | Size: 442 B After Width: | Height: | Size: 442 B |
Before Width: | Height: | Size: 889 B After Width: | Height: | Size: 889 B |
Before Width: | Height: | Size: 407 B After Width: | Height: | Size: 407 B |
Before Width: | Height: | Size: 810 B After Width: | Height: | Size: 810 B |
|
@ -19,11 +19,12 @@ const config: ForgeConfig = {
|
|||
packagerConfig: {
|
||||
appVersion: process.env.VERSION || packageJson.version,
|
||||
asar: true,
|
||||
icon: './images/icon',
|
||||
icon: './assets/icon.icns',
|
||||
extraResource: [
|
||||
'../ollama',
|
||||
'./images/ollama_icon_dark_16x16.png',
|
||||
'./images/ollama_icon_bright_16x16.png',
|
||||
'../ggml-metal.metal',
|
||||
path.join(__dirname, './assets/ollama_icon_dark_16x16@2x.png'),
|
||||
path.join(__dirname, './assets/ollama_icon_bright_16x16@2x.png'),
|
||||
...(process.platform === 'darwin' ? ['../ggml-metal.metal'] : []),
|
||||
],
|
||||
...(process.env.SIGN
|
||||
|
|