web-mikul-news/next.config.ts

20 lines
449 B
TypeScript
Raw Normal View History

2025-07-02 15:44:00 +00:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2025-07-03 06:57:17 +00:00
env: {
MEDOLS_CLIENT_KEY: process.env.MEDOLS_CLIENT_KEY,
},
2025-07-02 15:44:00 +00:00
images: {
2025-07-03 06:57:17 +00:00
domains: ["mikulnews.com", "dev.mikulnews.com"],
2025-07-02 15:44:00 +00:00
},
eslint: {
ignoreDuringBuilds: true,
},
2025-07-03 14:35:45 +00:00
// Add experimental features for better chunk handling
experimental: {
optimizePackageImports: ['@ckeditor/ckeditor5-react', 'react-apexcharts'],
},
2025-07-02 15:44:00 +00:00
};
export default nextConfig;