2021-11-03 16:57:13 +00:00
|
|
|
const webpack = require("webpack");
|
2023-06-20 21:40:14 +00:00
|
|
|
const path = require("path");
|
2021-11-03 16:57:13 +00:00
|
|
|
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");
|
2023-05-12 01:07:59 +00:00
|
|
|
const merge = require("lodash/merge");
|
|
|
|
const { ServiceWorkerPlugin } = require("service-worker-webpack");
|
2020-10-03 16:03:29 +00:00
|
|
|
const banner = `
|
2020-10-24 17:12:13 +00:00
|
|
|
hash:[contentHash], chunkhash:[chunkhash], name:[name], filebase:[base], query:[query], file:[file]
|
2020-10-03 16:03:29 +00:00
|
|
|
Source code: https://github.com/LemmyNet/lemmy-ui
|
|
|
|
Created by dessalines
|
|
|
|
@license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL v3.0
|
|
|
|
`;
|
2020-09-07 03:41:46 +00:00
|
|
|
|
2020-10-25 19:46:08 +00:00
|
|
|
const base = {
|
|
|
|
output: {
|
2021-11-03 16:57:13 +00:00
|
|
|
filename: "js/server.js",
|
|
|
|
publicPath: "/",
|
|
|
|
hashFunction: "xxhash64",
|
2020-10-25 19:46:08 +00:00
|
|
|
},
|
|
|
|
resolve: {
|
2021-11-03 16:57:13 +00:00
|
|
|
extensions: [".js", ".jsx", ".ts", ".tsx"],
|
2023-06-20 21:40:14 +00:00
|
|
|
alias: {
|
|
|
|
"@": path.resolve(__dirname, "src/"),
|
|
|
|
"@utils": path.resolve(__dirname, "src/shared/utils/"),
|
|
|
|
},
|
2020-10-25 19:46:08 +00:00
|
|
|
},
|
|
|
|
performance: {
|
|
|
|
hints: false,
|
|
|
|
},
|
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.(scss|css)$/i,
|
2021-11-03 16:57:13 +00:00
|
|
|
use: [MiniCssExtractPlugin.loader, "css-loader", "sass-loader"],
|
2020-10-25 19:46:08 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(js|jsx|tsx|ts)$/, // All ts and tsx files will be process by
|
|
|
|
exclude: /node_modules/, // ignore node_modules
|
2021-11-03 16:57:13 +00:00
|
|
|
loader: "babel-loader",
|
2020-10-25 19:46:08 +00:00
|
|
|
},
|
|
|
|
// Due to some weird babel issue: https://github.com/webpack/webpack/issues/11467
|
|
|
|
{
|
|
|
|
test: /\.m?js/,
|
|
|
|
resolve: {
|
|
|
|
fullySpecified: false,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
plugins: [
|
|
|
|
new MiniCssExtractPlugin({
|
2021-11-03 16:57:13 +00:00
|
|
|
filename: "styles/styles.css",
|
2020-10-25 19:46:08 +00:00
|
|
|
}),
|
|
|
|
new CopyPlugin({
|
2021-11-03 16:57:13 +00:00
|
|
|
patterns: [{ from: "./src/assets", to: "./assets" }],
|
2020-10-25 19:46:08 +00:00
|
|
|
}),
|
|
|
|
new webpack.BannerPlugin({
|
|
|
|
banner,
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
};
|
2020-10-25 10:58:47 +00:00
|
|
|
|
2020-10-27 00:54:05 +00:00
|
|
|
const createServerConfig = (_env, mode) => {
|
2020-10-25 19:46:08 +00:00
|
|
|
const config = merge({}, base, {
|
|
|
|
mode,
|
2021-11-03 16:57:13 +00:00
|
|
|
entry: "./src/server/index.tsx",
|
2020-09-07 03:41:46 +00:00
|
|
|
output: {
|
2021-11-03 16:57:13 +00:00
|
|
|
filename: "js/server.js",
|
2020-09-07 03:41:46 +00:00
|
|
|
},
|
2021-11-03 16:57:13 +00:00
|
|
|
target: "node",
|
|
|
|
externals: [nodeExternals(), "inferno-helmet"],
|
2020-10-25 19:46:08 +00:00
|
|
|
});
|
|
|
|
|
2021-11-03 16:57:13 +00:00
|
|
|
if (mode === "development") {
|
2023-06-14 12:20:40 +00:00
|
|
|
// config.cache = {
|
|
|
|
// type: "filesystem",
|
|
|
|
// name: "server",
|
|
|
|
// };
|
2020-10-25 20:14:00 +00:00
|
|
|
|
|
|
|
config.plugins.push(
|
|
|
|
new RunNodeWebpackPlugin({
|
|
|
|
runOnlyInWatchMode: true,
|
|
|
|
})
|
|
|
|
);
|
2020-10-25 19:46:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return config;
|
|
|
|
};
|
2023-05-12 01:07:59 +00:00
|
|
|
|
2020-10-27 00:54:05 +00:00
|
|
|
const createClientConfig = (_env, mode) => {
|
2020-10-25 19:46:08 +00:00
|
|
|
const config = merge({}, base, {
|
|
|
|
mode,
|
2021-11-03 16:57:13 +00:00
|
|
|
entry: "./src/client/index.tsx",
|
2020-10-25 19:46:08 +00:00
|
|
|
output: {
|
2021-11-03 16:57:13 +00:00
|
|
|
filename: "js/client.js",
|
2020-10-25 10:58:47 +00:00
|
|
|
},
|
2023-05-12 01:07:59 +00:00
|
|
|
plugins: [
|
|
|
|
...base.plugins,
|
|
|
|
new ServiceWorkerPlugin({
|
2023-06-14 12:20:40 +00:00
|
|
|
enableInDevelopment: mode !== "development", // this may seem counterintuitive, but it is correct
|
2023-05-12 01:07:59 +00:00
|
|
|
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"),
|
2023-05-16 13:08:52 +00:00
|
|
|
handler: mode === "development" ? "NetworkFirst" : "CacheFirst",
|
2023-05-12 01:07:59 +00:00
|
|
|
options: {
|
|
|
|
cacheName: "static-cache",
|
2023-05-16 13:08:52 +00:00
|
|
|
expiration: {
|
|
|
|
maxAgeSeconds: 60 * 60 * 24,
|
|
|
|
},
|
2023-05-12 01:07:59 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
urlPattern: ({ url: { pathname }, request: { method } }) =>
|
|
|
|
pathname.includes("pictrs") && method === "GET",
|
|
|
|
handler: "StaleWhileRevalidate",
|
|
|
|
options: {
|
|
|
|
cacheName: "image-cache",
|
|
|
|
expiration: {
|
|
|
|
maxAgeSeconds: 60 * 60 * 24,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
],
|
2020-10-25 19:46:08 +00:00
|
|
|
});
|
2020-09-07 03:41:46 +00:00
|
|
|
|
2021-11-03 16:57:13 +00:00
|
|
|
if (mode === "development") {
|
2023-06-14 12:20:40 +00:00
|
|
|
// config.cache = {
|
|
|
|
// type: "filesystem",
|
|
|
|
// name: "client",
|
|
|
|
// };
|
2020-09-07 03:41:46 +00:00
|
|
|
}
|
2020-10-25 19:46:08 +00:00
|
|
|
|
|
|
|
return config;
|
2020-09-07 03:41:46 +00:00
|
|
|
};
|
2020-10-25 19:46:08 +00:00
|
|
|
|
|
|
|
module.exports = (env, properties) => [
|
2021-11-03 16:57:13 +00:00
|
|
|
createServerConfig(env, properties.mode || "development"),
|
|
|
|
createClientConfig(env, properties.mode || "development"),
|
2020-10-25 19:46:08 +00:00
|
|
|
];
|