티스토리 뷰
반응형
next-pwa 설치
npm install next-pwa
`next.config.js` 파일 생성
const withPWA = require('next-pwa')
module.exports = withPWA({
pwa: {
dest: 'public'
}
})
meta tag 생성
예제:
<meta charset='utf-8' />
<meta http-equiv='X-UA-Compatible' content='IE=edge' />
<meta name='viewport' content='width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no' />
<meta name='description' content='Description' />
<meta name='keywords' content='Keywords' />
<title>Next.js PWA Example</title>
<link rel="manifest" href="/manifest.json" />
<link href='/favicon-16x16.png' rel='icon' type='image/png' sizes='16x16' />
<link href='/favicon-32x32.png' rel='icon' type='image/png' sizes='32x32' />
<link rel="apple-touch-icon" href="/apple-icon.png"></link>
<meta name="theme-color" content="#317EFB"/>
참고 : https://itnext.io/pwa-with-next-js-create-next-app-in-2020-%EF%B8%8F-9ee0e1a6313d
반응형
'Nextjs' 카테고리의 다른 글
next js에 pwa 적용하기 (0) | 2020.08.07 |
---|---|
next + pwa 홈화면에 추가 버튼 생성 (0) | 2020.05.28 |
Next js 튜토리얼 8편 : 배포 (0) | 2019.10.10 |
Next js 튜토리얼 7편 : 컴포넌트 스타일링 (0) | 2019.10.05 |
Next js 튜토리얼 6편 : 데이터 가져오기 (0) | 2019.10.01 |
댓글
공지사항