-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgridsome.config.js
More file actions
36 lines (33 loc) · 1.11 KB
/
gridsome.config.js
File metadata and controls
36 lines (33 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// This is where project configuration and plugin options are located.
// Learn more: https://gridsome.org/docs/config
// Changes here require a server restart.
// To restart press CTRL + C in terminal and run `gridsome develop`
module.exports = {
siteName: 'Gridsome',
plugins: [{
use: 'gridsome-plugin-pwa',
options: {
// Service Worker Options
disableServiceWorker: false,
serviceWorkerPath: 'service-worker.js',
cachedFileTypes: 'vue,js,json,css,html,png,jpg,jpeg,svg,gif',
disableTemplatedUrls: false, // Optional
// Manifest Options (https://developer.mozilla.org/en-US/docs/Web/Manifest)
manifestPath: 'manifest.json',
title: 'Kate',
startUrl: '/',
display: 'standalone',
statusBarStyle: 'default',
themeColor: '#666600',
backgroundColor: '#ffffff',
icon: '',
shortName: 'Kate', // Optional
description: 'Communikate!', // Optional
categories: ['education'], // Optional
lang: 'en-US', // Optional
dir: 'auto', // Optional
}
}],
siteUrl: "https://carsonbird.github.io",
pathPrefix: "/kate-ui"
}