You've already forked Atomcms-edit
26 lines
466 B
JavaScript
Executable File
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;
|