mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-13 16:22:59 +10:00
- add multiple languages
- switch from moment to dayjs
This commit is contained in:
@ -5,7 +5,7 @@ module.exports = {
|
||||
title: 'Reactive Resume',
|
||||
siteUrl: 'https://rxresu.me',
|
||||
description: 'A free and open source resume builder.',
|
||||
version: '2.0.3',
|
||||
version: '2.0.4',
|
||||
},
|
||||
plugins: [
|
||||
'gatsby-plugin-react-helmet',
|
||||
@ -21,6 +21,20 @@ module.exports = {
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
resolve: 'gatsby-plugin-manifest',
|
||||
options: {
|
||||
name: 'Reactive Resume',
|
||||
short_name: 'Reactive Resume',
|
||||
start_url: '/',
|
||||
background_color: '#212121',
|
||||
icon: `static/images/logo.png`,
|
||||
orientation: 'landscape',
|
||||
theme_color: '#212121',
|
||||
display: 'standalone',
|
||||
},
|
||||
},
|
||||
'gatsby-plugin-offline',
|
||||
{
|
||||
resolve: 'gatsby-plugin-prefetch-google-fonts',
|
||||
options: {
|
||||
@ -64,46 +78,6 @@ module.exports = {
|
||||
resolve: 'gatsby-plugin-create-client-paths',
|
||||
options: { prefixes: ['/app/*'] },
|
||||
},
|
||||
{
|
||||
resolve: 'gatsby-plugin-manifest',
|
||||
options: {
|
||||
name: 'Reactive Resume',
|
||||
short_name: 'RxResume',
|
||||
description: 'A free and open-source resume builder.',
|
||||
start_url: '/?source=pwa',
|
||||
icon: 'static/images/logo.png',
|
||||
background_color: '#FFFFFF',
|
||||
theme_color: '#444444',
|
||||
display: 'standalone',
|
||||
cache_busting_mode: 'none',
|
||||
icons: [
|
||||
{
|
||||
src: 'static/icons/maskable.png',
|
||||
sizes: '196x196',
|
||||
type: 'image/png',
|
||||
purpose: 'any maskable',
|
||||
},
|
||||
],
|
||||
shortcuts: [
|
||||
{
|
||||
name: 'Dashboard',
|
||||
short_name: 'Dashboard',
|
||||
description: 'View/manage all your resumes at a glance',
|
||||
url: '/app/dashboard?source=pwa',
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
{
|
||||
resolve: 'gatsby-plugin-offline',
|
||||
options: {
|
||||
workboxConfig: {
|
||||
globPatterns: ['**/*'],
|
||||
},
|
||||
precachePages: ['', '/app/*', '/blog/*'],
|
||||
},
|
||||
},
|
||||
'gatsby-plugin-lodash',
|
||||
{
|
||||
resolve: 'gatsby-plugin-material-ui',
|
||||
options: {
|
||||
@ -116,8 +90,8 @@ module.exports = {
|
||||
{
|
||||
resolve: 'gatsby-source-filesystem',
|
||||
options: {
|
||||
path: `${__dirname}/src/articles`,
|
||||
name: 'articles',
|
||||
path: `${__dirname}/src/articles`,
|
||||
},
|
||||
},
|
||||
'gatsby-transformer-remark',
|
||||
|
||||
Reference in New Issue
Block a user