Skip to content

Commit

Permalink
Merge pull request #42 from jordanopensource/development
Browse files Browse the repository at this point in the history
Release v1.1.1 of Aman Raqami
  • Loading branch information
wissamataleh authored Mar 16, 2021
2 parents 7cb313c + 3f8aa0d commit 5a49f58
Show file tree
Hide file tree
Showing 5 changed files with 13,482 additions and 13 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,6 @@ sw.*

# Vim swap files
*.swp

# VSCode Configuration
.vscode
16 changes: 12 additions & 4 deletions nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ export default {
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{ rel: 'stylesheet', href: 'https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css' },
],
script:[
script: [
{
src:"https://code.jquery.com/jquery-2.1.4.min.js",
src: "https://code.jquery.com/jquery-2.1.4.min.js",
body: true,
type: "text/javascript"
},
Expand All @@ -26,7 +26,7 @@ export default {
body: true,
type: "text/javascript"
},
{ src:'/js/matomo.js' },
{ src: '/js/matomo.js' },
]
},

Expand Down Expand Up @@ -74,6 +74,7 @@ export default {
'@nuxtjs/axios',
'nuxt-i18n',
'@nuxtjs/moment',
'nuxt-healthcheck',
],

// Axios module configuration: https://go.nuxtjs.dev/config-axios
Expand Down Expand Up @@ -111,7 +112,14 @@ export default {
defaultLocale: 'en',
locales: ['ar']
},


healthcheck: {
path: '/ping',
contentType: 'application/json',
healthy: () => {
return JSON.stringify({ result: 'pong' })
}
},
publicRuntimeConfig: {
APIBaseURL: process.env.API_BASE_URL,
},
Expand Down
Loading

1 comment on commit 5a49f58

@vercel
Copy link

@vercel vercel bot commented on 5a49f58 Mar 16, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.