mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-17 06:01:34 +00:00
Fix lint style
This commit is contained in:
parent
f89722e7c8
commit
ec8291ea4c
@ -205,7 +205,7 @@ function * generateRoutesAndFiles () {
|
||||
if (typeof p === 'string') {
|
||||
return { src: r(this.srcDir, p), ssr: true }
|
||||
}
|
||||
return { src: r(this.srcDir, p.src), ssr: (p.ssr === false ? false : true), injectAs: (p.injectAs || false) }
|
||||
return { src: r(this.srcDir, p.src), ssr: (p.ssr !== false), injectAs: (p.injectAs || false) }
|
||||
}),
|
||||
appPath: './App.vue',
|
||||
layouts: layouts,
|
||||
|
@ -36,12 +36,12 @@ OfflinePluginCopyAssetsPlugin.prototype.apply = function(compiler) {
|
||||
|
||||
Promise.all(renamePromises)
|
||||
.then(() => {
|
||||
console.log('\noffline content to static directory...')
|
||||
console.log('\nOffline content to static directory...') // eslint-disable-line no-console
|
||||
})
|
||||
.catch((error) => {
|
||||
console.error('\noffline-plugin copy error', error)
|
||||
});
|
||||
}.bind(this));
|
||||
console.error('\nOffline-plugin copy error', error) // eslint-disable-line no-console
|
||||
})
|
||||
}.bind(this))
|
||||
}
|
||||
|
||||
/*
|
||||
@ -150,8 +150,9 @@ export default function () {
|
||||
config.plugins.push(
|
||||
new OfflinePlugin(offlineOpts),
|
||||
new OfflinePluginCopyAssetsPlugin(
|
||||
['sw.js', 'appcache/manifest.appcache', 'appcache/manifest.html'
|
||||
], 'static')
|
||||
['sw.js', 'appcache/manifest.appcache', 'appcache/manifest.html'],
|
||||
'static'
|
||||
)
|
||||
)
|
||||
}
|
||||
// Webpack Bundle Analyzer
|
||||
|
Loading…
Reference in New Issue
Block a user