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',