UNPKG

563 BJavaScriptView Raw
1const path = require('path');
2module.exports = {
3 name: '@template/pwa - SPA/PWA',
4 short_name: '@template/pwa',
5 description: '...',
6 lang: 'de-DE',
7 start_url: 'https://',
8 display: 'standalone',
9 orientation: 'any',
10 theme_color: '#C8A2C8',
11 background_color: '#DCD0FF',
12 filename: 'manifest.json',
13 icons: [
14 {
15 src: path.resolve('public/assets/pwa.icon.png'),
16 sizes: [96, 128, 192, 256, 384, 512],
17 },
18 ],
19 crossorigin: null,
20 inject: true,
21 fingerprints: false,
22 ios: false,
23 publicPath: null,
24 includeDirectory: true,
25};