fix: next plugins use

This commit is contained in:
Kentai Radiquum 2025-04-04 01:05:37 +05:00
parent 7df11a467a
commit 141cb9a1ce
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
3 changed files with 21 additions and 18 deletions

View file

@ -75,22 +75,8 @@ const NextConfig = {
},
};
const config = () => {
const plugins = [withPlausibleProxy, withFlowbiteReact];
return (
plugins.reduce((acc, next) => {
console.log(`INIT: ${next.name}`);
if (next.name === "withPlausibleProxy") {
return next(acc, {
const config = withPlausibleProxy({
customDomain: "https://analytics.wah.su",
});
}
})(withFlowbiteReact(NextConfig));
return next(acc);
}),
{ ...NextConfig }
);
};
console.log(config());
module.exports = config();
module.exports = config;

16
package-lock.json generated
View file

@ -18,6 +18,7 @@
"media-chrome": "^4.8.0",
"next": "^14.2.26",
"next-plausible": "^3.12.1",
"prettier": "^3.5.3",
"react": "^18",
"react-cropper": "^2.3.3",
"react-dom": "^18",
@ -5532,6 +5533,21 @@
"node": ">= 0.8.0"
}
},
"node_modules/prettier": {
"version": "3.5.3",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz",
"integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==",
"license": "MIT",
"bin": {
"prettier": "bin/prettier.cjs"
},
"engines": {
"node": ">=14"
},
"funding": {
"url": "https://github.com/prettier/prettier?sponsor=1"
}
},
"node_modules/prop-types": {
"version": "15.8.1",
"resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",

View file

@ -19,6 +19,7 @@
"media-chrome": "^4.8.0",
"next": "^14.2.26",
"next-plausible": "^3.12.1",
"prettier": "^3.5.3",
"react": "^18",
"react-cropper": "^2.3.3",
"react-dom": "^18",