Replace momentjs with date-fns

This commit is contained in:
SleeplessOne1917 2023-06-22 19:33:02 -04:00
parent f5b958f884
commit d0dff77377
12 changed files with 187 additions and 79 deletions

View file

@ -6,6 +6,8 @@ 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 BundleAnalyzerPlugin =
require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
const banner = `
hash:[contentHash], chunkhash:[chunkhash], name:[name], filebase:[base], query:[query], file:[file]
Source code: https://github.com/LemmyNet/lemmy-ui
@ -153,11 +155,8 @@ const createClientConfig = (_env, mode) => {
],
});
if (mode === "development") {
// config.cache = {
// type: "filesystem",
// name: "client",
// };
if (mode === "none") {
config.plugins.push(new BundleAnalyzerPlugin());
}
return config;