반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- ReactNative
- PYTHON
- centos
- IOS
- Chrome
- 리눅스
- avds
- linux
- build
- jest
- 네트워크
- MAC
- react
- 맥
- 센토스
- qunit
- TensorFlow
- localserver
- VirtualBox
- vsCode
- unittest
- MachineLearning
- Android
- xcode
- 개발
- androidstudio
- webpack
- picker
- node
Archives
- Today
- Total
로메오의 블로그
[IONIC] Firebase hosting 으로 배포하기 본문
반응형
ionic production으로 build 하기
$ ionic build --prod --release
www 폴더가 생성됩니다.
firebase hosting 생성하기
$ npm install -g firebase-tools
$ firebase login
$ firebase init
public을 선택하고 생성합니다.
firebase.json
{
"hosting": {
"public": "www",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
public폴더를 www로 수정합니다.
배포하기
$ ionic build --prod --release
$ firebase deploy
반응형
'Frontend > angular' 카테고리의 다른 글
[IONIC] Firebase Firestore 연결 (0) | 2020.02.13 |
---|---|
[IONIC] Firebase Login (1) | 2020.02.12 |
[IONIC] Firebase 연동하기 (0) | 2020.02.04 |
[IONIC] angular http 통신 (0) | 2020.02.04 |
[IONIC] tab navigation 구현하기 (0) | 2020.02.04 |
Comments