mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 15:54:39 +00:00
16 lines
334 B
JavaScript
16 lines
334 B
JavaScript
const { withPlausibleProxy } = require("next-plausible");
|
|
|
|
module.exports = withPlausibleProxy({
|
|
customDomain: "https://analytics.wah.su",
|
|
})({
|
|
images: {
|
|
loader: 'custom',
|
|
loaderFile: './imageLoader.ts',
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "anixstatic.com",
|
|
},
|
|
],
|
|
},
|
|
});
|