From bce80a9101195a1c826738a0f7ce7f996305f1e2 Mon Sep 17 00:00:00 2001 From: Amruth Pillai Date: Sat, 5 Dec 2020 16:19:52 +0530 Subject: [PATCH] bump up version to 2.3 --- .firebaserc | 1 + firebase.json | 20 +++++++++++++++----- gatsby-config.js | 2 +- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/.firebaserc b/.firebaserc index 19019b9b..0ad5a41b 100644 --- a/.firebaserc +++ b/.firebaserc @@ -1,5 +1,6 @@ { "projects": { + "rx-resume": "rx-resume", "default": "rx-resume" }, "targets": { diff --git a/firebase.json b/firebase.json index 64dde8ba..f95951ba 100644 --- a/firebase.json +++ b/firebase.json @@ -1,9 +1,19 @@ { - "hosting": { - "target": "rxresume", - "public": "./public", - "ignore": ["**/.*", "firebase.json", "**/node_modules/**"] - }, + "hosting": [{ + "site": "rxresume", + "public": "public", + "ignore": [ + "firebase.json", + "**/.*", + "**/node_modules/**" + ], + "rewrites": [ + { + "source": "**", + "destination": "/index.html" + } + ] + }], "emulators": { "functions": { "port": 5001 diff --git a/gatsby-config.js b/gatsby-config.js index 0a07dc73..7857308f 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -5,7 +5,7 @@ module.exports = { title: 'Reactive Resume', siteUrl: 'https://rxresu.me', description: 'A free and open source resume builder.', - version: '2.2.1', + version: '2.3', }, plugins: [ 'gatsby-plugin-react-helmet',