changed from hexo to custom react stuff #1

Merged
developomp merged 73 commits from dev into master 2021-06-27 14:37:56 +09:00
2 changed files with 15 additions and 17 deletions
Showing only changes of commit 3a32b36292 - Show all commits

View file

@ -17,5 +17,5 @@ jobs:
repoToken: "${{ secrets.GITHUB_TOKEN }}" repoToken: "${{ secrets.GITHUB_TOKEN }}"
firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_DEVELOPOMP_SITE }}" firebaseServiceAccount: "${{ secrets.FIREBASE_SERVICE_ACCOUNT_DEVELOPOMP_SITE }}"
channelId: live channelId: live
projectId: developomp-site-dev projectId: developomp-site
target: dev target: dev

View file

@ -1,18 +1,16 @@
{ {
"hosting": { "hosting": [
"target": "dev", {
"cleanUrls": true, "target": "dev",
"public": "source/build", "cleanUrls": true,
"rewrites": [ "public": "source/build",
{ "rewrites": [
"source": "**", {
"destination": "/index.html" "source": "**",
} "destination": "/index.html"
], }
"ignore": [ ],
"firebase.json", "ignore": ["firebase.json", "**/.*", "**/node_modules/**"]
"**/.*", }
"**/node_modules/**" ]
]
}
} }