mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 13:28:57 +00:00
11 lines
197 B
JavaScript
11 lines
197 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'export',
|
|
images: {
|
|
loader: 'custom',
|
|
loaderFile: './loader.js',
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|