mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-04 23:34:38 +00:00
fix: next plugins use
This commit is contained in:
parent
7df11a467a
commit
141cb9a1ce
3 changed files with 21 additions and 18 deletions
|
@ -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, {
|
||||
customDomain: "https://analytics.wah.su",
|
||||
});
|
||||
}
|
||||
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
16
package-lock.json
generated
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue