We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c233696 commit 09a465aCopy full SHA for 09a465a
packages/pwa-utils/index.js
@@ -9,7 +9,7 @@ function isUrl (url) {
9
}
10
11
function joinUrl (...args) {
12
- return path.join(...args)
+ return path.join(...args).replace(':/', '://')
13
14
15
function getRouteParams (options) {
test/fixture/nuxt.config.js
@@ -20,6 +20,10 @@ module.exports = {
20
description: 'Test Project Description'
21
},
22
23
+ // build: {
24
+ // publicPath: 'https://cdn.com/assets/'
25
+ // },
26
+
27
workbox: {
28
offlineAnalytics: true,
29
dev: true,
0 commit comments