11 lines
205 B
JavaScript
11 lines
205 B
JavaScript
import { withContentlayer } from 'next-contentlayer';
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
remotePatterns: []
|
|
}
|
|
};
|
|
|
|
export default withContentlayer(nextConfig);
|