mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-15 09:58:18 -07:00
Move serviceworker precaching to production config
This commit is contained in:
parent
066690dd8b
commit
74940b601b
@ -44,6 +44,10 @@ self.addEventListener('notificationclick', function (event) {
|
||||
event.waitUntil(executeAction(action, data, serverId));
|
||||
}, false);
|
||||
|
||||
// this is needed by the webpack Workbox plugin
|
||||
/* eslint-disable-next-line no-restricted-globals,no-undef */
|
||||
precacheAndRoute(self.__WB_MANIFEST);
|
||||
// Do not precache files in development so live reload works as expected
|
||||
/* eslint-disable-next-line no-undef -- NODE_ENV is replaced by webpack */
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
// this is needed by the webpack Workbox plugin
|
||||
/* eslint-disable-next-line no-restricted-globals,no-undef */
|
||||
precacheAndRoute(self.__WB_MANIFEST);
|
||||
}
|
||||
|
@ -1,7 +1,6 @@
|
||||
const path = require('path');
|
||||
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
|
||||
const CopyPlugin = require('copy-webpack-plugin');
|
||||
const WorkboxPlugin = require('workbox-webpack-plugin');
|
||||
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||
|
||||
const Assets = [
|
||||
@ -72,10 +71,6 @@ module.exports = {
|
||||
to: path.resolve(__dirname, './dist/libraries/wasm-gen')
|
||||
};
|
||||
})
|
||||
}),
|
||||
new WorkboxPlugin.InjectManifest({
|
||||
swSrc: path.resolve(__dirname, 'src/serviceworker.js'),
|
||||
swDest: 'serviceworker.js'
|
||||
})
|
||||
],
|
||||
output: {
|
||||
|
@ -1,7 +1,15 @@
|
||||
const path = require('path');
|
||||
const common = require('./webpack.common');
|
||||
const merge = require('webpack-merge');
|
||||
const WorkboxPlugin = require('workbox-webpack-plugin');
|
||||
|
||||
module.exports = merge(common, {
|
||||
mode: 'production',
|
||||
entry: './scripts/site.js'
|
||||
entry: './scripts/site.js',
|
||||
plugins: [
|
||||
new WorkboxPlugin.InjectManifest({
|
||||
swSrc: path.resolve(__dirname, 'src/serviceworker.js'),
|
||||
swDest: 'serviceworker.js'
|
||||
})
|
||||
]
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user