]> Untitled Git - lemmy-ui.git/blobdiff - webpack.config.js
use badge-muted
[lemmy-ui.git] / webpack.config.js
index 6e6ac78b2aa2eaf145de814c365585c7cf50deb3..51ca81db3e6ce11c21b2d1075f5ccbb515479f58 100644 (file)
@@ -1,10 +1,10 @@
-const webpack = require('webpack');
-const MiniCssExtractPlugin = require('mini-css-extract-plugin');
-const nodeExternals = require('webpack-node-externals');
-const CopyPlugin = require('copy-webpack-plugin');
-const RunNodeWebpackPlugin = require('run-node-webpack-plugin');
-const { merge } = require('lodash');
-
+const webpack = require("webpack");
+const MiniCssExtractPlugin = require("mini-css-extract-plugin");
+const nodeExternals = require("webpack-node-externals");
+const CopyPlugin = require("copy-webpack-plugin");
+const RunNodeWebpackPlugin = require("run-node-webpack-plugin");
+const merge = require("lodash/merge");
+const { ServiceWorkerPlugin } = require("service-worker-webpack");
 const banner = `
   hash:[contentHash], chunkhash:[chunkhash], name:[name], filebase:[base], query:[query], file:[file]
   Source code: https://github.com/LemmyNet/lemmy-ui
@@ -14,11 +14,12 @@ const banner = `
 
 const base = {
   output: {
-    filename: 'js/server.js',
-    publicPath: '/',
+    filename: "js/server.js",
+    publicPath: "/",
+    hashFunction: "xxhash64",
   },
   resolve: {
-    extensions: ['.js', '.jsx', '.ts', '.tsx'],
+    extensions: [".js", ".jsx", ".ts", ".tsx"],
   },
   performance: {
     hints: false,
@@ -27,12 +28,12 @@ const base = {
     rules: [
       {
         test: /\.(scss|css)$/i,
-        use: [MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader'],
+        use: [MiniCssExtractPlugin.loader, "css-loader", "sass-loader"],
       },
       {
         test: /\.(js|jsx|tsx|ts)$/, // All ts and tsx files will be process by
         exclude: /node_modules/, // ignore node_modules
-        loader: 'babel-loader',
+        loader: "babel-loader",
       },
       // Due to some weird babel issue: https://github.com/webpack/webpack/issues/11467
       {
@@ -45,10 +46,10 @@ const base = {
   },
   plugins: [
     new MiniCssExtractPlugin({
-      filename: 'styles/styles.css',
+      filename: "styles/styles.css",
     }),
     new CopyPlugin({
-      patterns: [{ from: './src/assets', to: './assets' }],
+      patterns: [{ from: "./src/assets", to: "./assets" }],
     }),
     new webpack.BannerPlugin({
       banner,
@@ -56,21 +57,21 @@ const base = {
   ],
 };
 
-const createServerConfig = (env, mode) => {
+const createServerConfig = (_env, mode) => {
   const config = merge({}, base, {
     mode,
-    entry: './src/server/index.tsx',
+    entry: "./src/server/index.tsx",
     output: {
-      filename: 'js/server.js',
+      filename: "js/server.js",
     },
-    target: 'node',
-    externals: [nodeExternals(), 'inferno-helmet'],
+    target: "node",
+    externals: [nodeExternals(), "inferno-helmet"],
   });
 
-  if (mode === 'development') {
+  if (mode === "development") {
     config.cache = {
-      type: 'filesystem',
-      name: 'server',
+      type: "filesystem",
+      name: "server",
     };
 
     config.plugins.push(
@@ -82,19 +83,75 @@ const createServerConfig = (env, mode) => {
 
   return config;
 };
-const createClientConfig = (env, mode) => {
+
+const createClientConfig = (_env, mode) => {
   const config = merge({}, base, {
     mode,
-    entry: './src/client/index.tsx',
+    entry: "./src/client/index.tsx",
     output: {
-      filename: 'js/client.js',
+      filename: "js/client.js",
     },
+    plugins: [
+      ...base.plugins,
+      new ServiceWorkerPlugin({
+        enableInDevelopment: true,
+        workbox: {
+          modifyURLPrefix: {
+            "/": "/static/",
+          },
+          cacheId: "lemmy",
+          include: [/(assets|styles)\/.+\..+|client\.js$/g],
+          inlineWorkboxRuntime: true,
+          runtimeCaching: [
+            {
+              urlPattern: ({
+                sameOrigin,
+                url: { pathname, host },
+                request: { method },
+              }) =>
+                (sameOrigin || host.includes("localhost")) &&
+                (!(
+                  pathname.includes("pictrs") || pathname.includes("static")
+                ) ||
+                  method === "POST"),
+              handler: "NetworkFirst",
+              options: {
+                cacheName: "instance-cache",
+              },
+            },
+            {
+              urlPattern: ({ url: { pathname, host }, sameOrigin }) =>
+                (sameOrigin || host.includes("localhost")) &&
+                pathname.includes("static"),
+              handler: mode === "development" ? "NetworkFirst" : "CacheFirst",
+              options: {
+                cacheName: "static-cache",
+                expiration: {
+                  maxAgeSeconds: 60 * 60 * 24,
+                },
+              },
+            },
+            {
+              urlPattern: ({ url: { pathname }, request: { method } }) =>
+                pathname.includes("pictrs") && method === "GET",
+              handler: "StaleWhileRevalidate",
+              options: {
+                cacheName: "image-cache",
+                expiration: {
+                  maxAgeSeconds: 60 * 60 * 24,
+                },
+              },
+            },
+          ],
+        },
+      }),
+    ],
   });
 
-  if (mode === 'development') {
+  if (mode === "development") {
     config.cache = {
-      type: 'filesystem',
-      name: 'client',
+      type: "filesystem",
+      name: "client",
     };
   }
 
@@ -102,6 +159,6 @@ const createClientConfig = (env, mode) => {
 };
 
 module.exports = (env, properties) => [
-  createServerConfig(env, properties.mode || 'development'),
-  createClientConfig(env, properties.mode || 'development'),
+  createServerConfig(env, properties.mode || "development"),
+  createClientConfig(env, properties.mode || "development"),
 ];