Files
Atomcms-edit/frontend/next.config.js
T
2026-05-09 17:32:17 +02:00

26 lines
466 B
JavaScript
Executable File

const nextConfig = {
outputFileTracingRoot: "/var/www/atomcms/frontend",
images: {
remotePatterns: [
{
protocol: "https",
hostname: "epicnabbo.nl",
},
{
protocol: "https",
hostname: "**.cloudfront.net",
},
],
},
async rewrites() {
return [
{
source: "/api/:path*",
destination: "http://localhost:8000/api/:path*",
},
];
},
};
module.exports = nextConfig;