mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
32 lines
866 B
JavaScript
32 lines
866 B
JavaScript
"use strict";
|
|
|
|
/*
|
|
Copyright 2019 Google LLC
|
|
|
|
Use of this source code is governed by an MIT-style
|
|
license that can be found in the LICENSE file or at
|
|
https://opensource.org/licenses/MIT.
|
|
*/
|
|
module.exports = {
|
|
babelPresetEnvTargets: ['chrome >= 56'],
|
|
cleanupOutdatedCaches: false,
|
|
clientsClaim: false,
|
|
compileSrc: true,
|
|
disableDevLogs: false,
|
|
exclude: [/\.map$/, /^manifest.*\.js$/],
|
|
globFollow: true,
|
|
globIgnores: ['**/node_modules/**/*'],
|
|
globPatterns: ['**/*.{js,css,html}'],
|
|
globStrict: true,
|
|
injectionPoint: 'self.__WB_MANIFEST',
|
|
inlineWorkboxRuntime: false,
|
|
maximumFileSizeToCacheInBytes: 2 * 1024 * 1024,
|
|
mode: 'production',
|
|
navigateFallback: undefined,
|
|
navigationPreload: false,
|
|
offlineGoogleAnalytics: false,
|
|
purgeOnQuotaError: true,
|
|
skipWaiting: false,
|
|
sourcemap: true,
|
|
swDestFilename: 'service-worker.js'
|
|
}; |