-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop'
- Loading branch information
Showing
172 changed files
with
3,620 additions
and
1,156 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,14 +1,19 @@ | ||
import Router from './modules/router'; | ||
import MainApp from './applications/menu/menu_app'; | ||
import MainApp from './applications/main/main_app'; | ||
import Terminal from './applications/terminal/terminal_app'; | ||
import Snake from './applications/snake/game_app'; | ||
import Game from './applications/frame/game_app'; | ||
|
||
import '../static/favicon.ico'; | ||
import './style.pcss'; | ||
|
||
new Router(document.body, MainApp) | ||
.registerApp('terminal', Terminal) | ||
.registerApp('snake', Snake) | ||
.registerApp('test', Game, 'https://www.innogames.com/games/all-games/') | ||
.start(); | ||
|
||
|
||
if ('serviceWorker' in navigator) { | ||
navigator.serviceWorker | ||
.register('./sw.js') | ||
.catch(err => console.error({ err })); | ||
} |
Oops, something went wrong.
de0e655
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now could not deploy this pull request since the
now.json
file does not contain valid JSON.Click here to see the contents of `now.json`
For more information on
now.json
visit https://zeit.co/docs/features/configuration#now.json.