20 lines
449 B
TypeScript
20 lines
449 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
env: {
|
|
MEDOLS_CLIENT_KEY: process.env.MEDOLS_CLIENT_KEY,
|
|
},
|
|
images: {
|
|
domains: ["mikulnews.com", "dev.mikulnews.com"],
|
|
},
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
// Add experimental features for better chunk handling
|
|
experimental: {
|
|
optimizePackageImports: ['@ckeditor/ckeditor5-react', 'react-apexcharts'],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|