-
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 pull request #164 from Team-INSERT/pwa
PWA
- Loading branch information
Showing
6 changed files
with
5,882 additions
and
1 deletion.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,30 @@ | ||
import type { MetadataRoute } from "next"; | ||
|
||
const manifest: () => MetadataRoute.Manifest = () => { | ||
const titleText = "부마위키"; | ||
const descriptionText = "여러분이 가꾸어 나가는 역사의 고서"; | ||
|
||
return { | ||
name: titleText, | ||
short_name: titleText, | ||
description: descriptionText, | ||
start_url: "/", | ||
display: "standalone", | ||
background_color: "#ffffff", | ||
theme_color: "#274168", | ||
icons: [ | ||
{ | ||
src: "/icon512_rounded.png", | ||
sizes: "192x192", | ||
type: "image/png", | ||
}, | ||
{ | ||
src: "/icon512_rounded.png", | ||
sizes: "512x512", | ||
type: "image/png", | ||
}, | ||
], | ||
}; | ||
}; | ||
|
||
export default manifest; |
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.