X-Git-Url: http://these/git/?a=blobdiff_plain;f=webpack.config.js;h=b12af48334aa7647f79a101451e23af391861e9a;hb=88f89cb9530cfaea0b82c8a86248d7d40a9f081d;hp=e9c4fb320b3fb3ace8fddd27ae471e219901d10a;hpb=5253e51ccd7ed2a15862efdfaa24da41c8f1b8d9;p=lemmy-ui.git diff --git a/webpack.config.js b/webpack.config.js index e9c4fb3..b12af48 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,8 +1,9 @@ -const MiniCssExtractPlugin = require('mini-css-extract-plugin'); -const nodeExternals = require('webpack-node-externals'); -const CopyPlugin = require('copy-webpack-plugin'); -const path = require('path'); -const webpack = require('webpack'); +const webpack = require("webpack"); +const { resolve } = require("path"); +const MiniCssExtractPlugin = require("mini-css-extract-plugin"); +const nodeExternals = require("webpack-node-externals"); +const CopyPlugin = require("copy-webpack-plugin"); +const { ServiceWorkerPlugin } = require("service-worker-webpack"); const banner = ` hash:[contentHash], chunkhash:[chunkhash], name:[name], filebase:[base], query:[query], file:[file] @@ -11,18 +12,19 @@ const banner = ` @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL v3.0 `; -module.exports = function (env, _) { - const platform = env.platform || 'server'; +module.exports = (env, argv) => { + const mode = argv.mode; const base = { - // mode is set by package.json flags - entry: './src/server/index.tsx', // Point to main file output: { - filename: 'js/server.js', - publicPath: '/', + hashFunction: "xxhash64", }, resolve: { - extensions: ['.js', '.jsx', '.ts', '.tsx'], + extensions: [".js", ".jsx", ".ts", ".tsx"], + alias: { + "@": resolve(__dirname, "src/"), + "@utils": resolve(__dirname, "src/shared/utils/"), + }, }, performance: { hints: false, @@ -31,12 +33,12 @@ module.exports = function (env, _) { 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 { @@ -47,37 +49,111 @@ module.exports = function (env, _) { }, ], }, - devServer: { - host: '0.0.0.0', - contentBase: 'src/', - historyApiFallback: true, - }, plugins: [ + new webpack.DefinePlugin({ + "process.env.COMMIT_HASH": `"${env.COMMIT_HASH}"`, + "process.env.NODE_ENV": `"${mode}"`, + }), 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, }), ], - cache: { - type: 'filesystem', - name: platform, + }; + + const serverConfig = { + ...base, + entry: "./src/server/index.tsx", + output: { + ...base.output, + filename: "js/server.js", + publicPath: "/", }, + target: "node", + externals: [nodeExternals(), "inferno-helmet"], }; - // server-specific configuration - if (platform === 'server') { - base.target = 'node'; - base.externals = [nodeExternals(), 'inferno-helmet']; - } - // client-specific configurations - if (platform === 'client') { - base.entry = './src/client/index.tsx'; - base.output.filename = 'js/client.js'; + const clientConfig = { + ...base, + entry: "./src/client/index.tsx", + output: { + ...base.output, + filename: "js/client.js", + publicPath: `/static/${env.COMMIT_HASH}/`, + }, + plugins: [ + ...base.plugins, + new ServiceWorkerPlugin({ + enableInDevelopment: mode !== "development", // this may seem counterintuitive, but it is correct + workbox: { + cacheId: "lemmy", + include: [/(assets|styles|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") { + // serverConfig.cache = { + // type: "filesystem", + // name: "server", + // }; + + const RunNodeWebpackPlugin = require("run-node-webpack-plugin"); + serverConfig.plugins.push( + new RunNodeWebpackPlugin({ runOnlyInWatchMode: true }) + ); + } else if (mode === "none") { + const { BundleAnalyzerPlugin } = require("webpack-bundle-analyzer"); + serverConfig.plugins.push(new BundleAnalyzerPlugin()); } - return base; + + return [serverConfig, clientConfig]; };