🐛 Fixed start_url'

This commit is contained in:
Liyas Thomas
2019-09-04 12:19:17 +05:30
parent 6545a9343d
commit 5602d2fd62
10 changed files with 173 additions and 79 deletions

View File

@@ -10,7 +10,11 @@ $responsiveWidth: 720px;
} }
::-webkit-scrollbar-thumb { ::-webkit-scrollbar-thumb {
background-color: #4a4a4a; background-color: rgba(0, 0, 0, .3);
}
::-webkit-scrollbar-thumb:hover {
background-color: rgba(0, 0, 0, .5);
} }
* { * {

View File

@@ -1,4 +1,3 @@
// Some helpful application constants. // Some helpful application constants.
// TODO: Use these when rendering the pages (rather than just for head/meta tags...) // TODO: Use these when rendering the pages (rather than just for head/meta tags...)
export const meta = { export const meta = {
@@ -6,10 +5,8 @@ export const meta = {
shortDescription: "API request builder", shortDescription: "API request builder",
description: "The Postwoman API request builder helps you create your requests faster, saving you precious time on your development." description: "The Postwoman API request builder helps you create your requests faster, saving you precious time on your development."
}; };
// Sets the base path for the router. // Sets the base path for the router.
// Important for deploying to GitHub pages. // Important for deploying to GitHub pages.
// -- Travis includes the author in the repo slug, // -- Travis includes the author in the repo slug,
// so if there's a /, we need to get everything after it. // so if there's a /, we need to get everything after it.
let repoName = (process.env.TRAVIS_REPO_SLUG || '').split('/').pop(); let repoName = (process.env.TRAVIS_REPO_SLUG || '').split('/').pop();
@@ -22,94 +19,195 @@ export const routerBase = process.env.DEPLOY_ENV === 'GH_PAGES' ? {
base: '/' base: '/'
} }
}; };
export default { export default {
mode: 'spa', mode: 'spa',
/* /*
** Headers of the page ** Headers of the page
*/ */
head: { head: {
title: `${meta.name} \u2022 ${meta.shortDescription}`, title: `${meta.name} \u2022 ${meta.shortDescription}`,
meta: [ meta: [
{ charset: 'utf-8' }, {
{ name: 'viewport', content: 'width=device-width, initial-scale=1, minimum-scale=1, shrink-to-fit=no, minimal-ui' }, charset: 'utf-8'
{ hid: 'description', name: 'description', content: meta.description || '' }, },
{ name: 'keywords', content: 'postwoman, api, request, testing, tool, rest, websocket'}, {
name: 'viewport',
{ name: 'X-UA-Compatible', content: "IE=edge, chrome=1" }, content: 'width=device-width, initial-scale=1, minimum-scale=1, shrink-to-fit=no, minimal-ui'
{ itemprop: "name", content: `${meta.name} \u2022 ${meta.shortDescription}` }, },
{ itemprop: "description", content: meta.description }, {
{ itemprop: "image", content: `${routerBase.router.base}icons/icon-192x192.png` }, hid: 'description',
name: 'description',
content: meta.description || ''
},
{
name: 'keywords',
content: 'postwoman, api, request, testing, tool, rest, websocket'
},
{
name: 'X-UA-Compatible',
content: "IE=edge, chrome=1"
},
{
itemprop: "name",
content: `${meta.name} \u2022 ${meta.shortDescription}`
},
{
itemprop: "description",
content: meta.description
},
{
itemprop: "image",
content: `${routerBase.router.base}icons/icon-192x192.png`
},
// Add to homescreen for Chrome on Android. Fallback for PWA (handled by nuxt) // Add to homescreen for Chrome on Android. Fallback for PWA (handled by nuxt)
{ name: 'application-name', content: meta.name }, {
name: 'application-name',
content: meta.name
},
// Add to homescreen for Safari on iOS // Add to homescreen for Safari on iOS
{ name: 'apple-mobile-web-app-capable', content: 'yes' }, {
{ name: 'apple-mobile-web-app-status-bar-style', content: 'black-translucent' }, name: 'apple-mobile-web-app-capable',
{ name: 'apple-mobile-web-app-title', content: meta.name }, content: 'yes'
},
{
name: 'apple-mobile-web-app-status-bar-style',
content: 'black-translucent'
},
{
name: 'apple-mobile-web-app-title',
content: meta.name
},
// Windows phone tile icon // Windows phone tile icon
{ name: 'msapplication-TileImage', content: `${routerBase.router.base}icons/icon-144x144.png` }, {
{ name: 'msapplication-TileColor', content: '#282a36' }, name: 'msapplication-TileImage',
{ name: 'msapplication-tap-highlight', content: 'no' }, content: `${routerBase.router.base}icons/icon-144x144.png`
},
{
name: 'msapplication-TileColor',
content: '#282a36'
},
{
name: 'msapplication-tap-highlight',
content: 'no'
},
// OpenGraph // OpenGraph
{ property: 'og:site_name', content: meta.name }, {
{ property: 'og:url', content: 'https://liyasthomas.github.io/postwoman' }, property: 'og:site_name',
{ property: 'og:type', content: 'website' }, content: meta.name
{ property: 'og:title', content: `${meta.name} \u2022 ${meta.shortDescription}` }, },
{ property: 'og:description', content: meta.description }, {
{ property: 'og:image', content: `${routerBase.router.base}icons/icon-144x144.png` }, property: 'og:url',
content: 'https://liyasthomas.github.io/postwoman'
},
{
property: 'og:type',
content: 'website'
},
{
property: 'og:title',
content: `${meta.name} \u2022 ${meta.shortDescription}`
},
{
property: 'og:description',
content: meta.description
},
{
property: 'og:image',
content: `${routerBase.router.base}icons/icon-144x144.png`
},
// Twitter // Twitter
{ name: 'twitter:card', content: "summary" }, {
{ name: 'twitter:site', content: "@liyasthomas" }, name: 'twitter:card',
{ name: 'twitter:creator', content: "@liyasthomas" }, content: "summary"
{ name: 'twitter:url', content: "https://liyasthomas.github.io/postwoman" }, },
{ name: 'twitter:title', content: meta.name }, {
{ name: 'twitter:description', content: meta.shortDescription }, name: 'twitter:site',
{ name: 'twitter:image', content: `${routerBase.router.base}icons/icon-144x144.png` }, content: "@liyasthomas"
},
{
name: 'twitter:creator',
content: "@liyasthomas"
},
{
name: 'twitter:url',
content: "https://liyasthomas.github.io/postwoman"
},
{
name: 'twitter:title',
content: meta.name
},
{
name: 'twitter:description',
content: meta.shortDescription
},
{
name: 'twitter:image',
content: `${routerBase.router.base}icons/icon-144x144.png`
},
], ],
link: [ link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }, {
rel: 'icon',
type: 'image/x-icon',
href: '/favicon.ico'
},
// Home-screen icons (iOS) // Home-screen icons (iOS)
{ rel: 'apple-touch-icon', href: `${routerBase.router.base}icons/icon-48x48.png` }, {
{ rel: 'apple-touch-icon', sizes: '72x72', href: `${routerBase.router.base}icons/icon-72x72.png` }, rel: 'apple-touch-icon',
{ rel: 'apple-touch-icon', sizes: '96x96', href: `${routerBase.router.base}icons/icon-96x96.png` }, href: `${routerBase.router.base}icons/icon-48x48.png`
{ rel: 'apple-touch-icon', sizes: '144x144', href: `${routerBase.router.base}icons/icon-144x144.png` }, },
{ rel: 'apple-touch-icon', sizes: '192x192', href: `${routerBase.router.base}icons/icon-192x192.png` }, {
rel: 'apple-touch-icon',
sizes: '72x72',
href: `${routerBase.router.base}icons/icon-72x72.png`
},
{
rel: 'apple-touch-icon',
sizes: '96x96',
href: `${routerBase.router.base}icons/icon-96x96.png`
},
{
rel: 'apple-touch-icon',
sizes: '144x144',
href: `${routerBase.router.base}icons/icon-144x144.png`
},
{
rel: 'apple-touch-icon',
sizes: '192x192',
href: `${routerBase.router.base}icons/icon-192x192.png`
},
] ]
}, },
/* /*
** Customize the progress-bar color ** Customize the progress-bar color
*/ */
loading: { color: 'var(--ac-color)' }, loading: {
color: 'var(--ac-color)'
},
/* /*
** Global CSS ** Global CSS
*/ */
css: [ css: [
'@/assets/css/themes.scss', '@/assets/css/themes.scss',
'@/assets/css/fonts.scss', '@/assets/css/fonts.scss',
'@/assets/css/styles.scss' '@/assets/css/styles.scss'
], ],
/* /*
** Plugins to load before mounting the App ** Plugins to load before mounting the App
*/ */
plugins: [ plugins: [
{ src: '~/plugins/vuex-persist' } {
src: '~/plugins/vuex-persist'
}
], ],
/* /*
** Nuxt.js dev-modules ** Nuxt.js dev-modules
*/ */
buildModules: [ buildModules: [
], ],
/* /*
** Nuxt.js modules ** Nuxt.js modules
*/ */
modules: [ modules: [
// See https://goo.gl/OOhYW5 // See https://goo.gl/OOhYW5
['@nuxtjs/pwa', { ['@nuxtjs/pwa', {
@@ -117,48 +215,40 @@ export default {
name: meta.name, name: meta.name,
short_name: meta.name, short_name: meta.name,
description: meta.shortDescription, description: meta.shortDescription,
display: "standalone", display: "standalone",
theme_color: "#282a36", theme_color: "#282a36",
background_color: "#282a36", background_color: "#282a36",
start_url: `${routerBase.router.base}`,
icons: ((sizes) => { icons: ((sizes) => {
let icons = []; let icons = [];
for (let size of sizes) {
for(let size of sizes){
icons.push({ icons.push({
"src": `${routerBase.router.base}icons/icon-${size}x${size}.png`, "src": `${routerBase.router.base}icons/icon-${size}x${size}.png`,
"type": "image/png", "type": "image/png",
"sizes": `${size}x${size}` "sizes": `${size}x${size}`
}); });
} }
return icons; return icons;
})([48, 72, 96, 144, 192, 512]) })([48, 72, 96, 144, 192, 512])
} }
}], }],
['@nuxtjs/axios'] ['@nuxtjs/axios']
], ],
/* /*
** Build configuration ** Build configuration
*/ */
build: { build: {
/* /*
** You can extend webpack config here ** You can extend webpack config here
*/ */
extend (config, ctx) { extend(config, ctx) {}
}
}, },
/* /*
** Generate configuration ** Generate configuration
*/ */
generate: { generate: {
fallback: true fallback: true
}, },
/* /*
** Router configuration ** Router configuration
*/ */

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB