| module.exports = { | |
| navigateFallback: '/index.html', | |
| stripPrefix: './dist', | |
| root: './dist/', | |
| staticFileGlobs: [ | |
| './dist/index.html', | |
| './dist/**.js', | |
| './dist/**.css', | |
| './dist/**.ttf', | |
| './dist/assets/images/*', | |
| './dist/config/*', | |
| './dist/i18n/en.json', | |
| './dist/i18n/de.json' | |
| ], | |
| runtimeCaching: [{ | |
| urlPattern: '', | |
| handler: 'fastest' | |
| }] | |
| }; |