-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from MichalBryxi/mb/ember-web-app
feat: Add ember-web-app
- Loading branch information
Showing
5 changed files
with
397 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../index.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
'use strict'; | ||
|
||
module.exports = function (/* environment, appConfig */) { | ||
// See https://zonkyio.github.io/ember-web-app for a list of | ||
// supported properties | ||
|
||
return { | ||
name: '#OpenTo...', | ||
short_name: '#OpenTo...', | ||
description: 'LinkedIn avatar generator', | ||
start_url: '/', | ||
scope: '/', | ||
display: 'standalone', | ||
background_color: '#fff', | ||
theme_color: '#fff', | ||
icons: [ | ||
{ | ||
src: '/assets/icons/appicon-32.png', | ||
sizes: '32x32', | ||
targets: ['favicon'], | ||
}, | ||
...[192, 280, 512].map((size) => ({ | ||
src: `/assets/icons/appicon-${size}.png`, | ||
sizes: `${size}x${size}`, | ||
})), | ||
], | ||
ms: { | ||
tileColor: '#fff', | ||
}, | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.