import type { NextConfig } from "next"; const nextConfig: NextConfig = { /* config options here */ output: 'standalone', webpack: (config) => { config.module.rules.push({ test: /\.md$/, use: 'raw-loader' }) return config } }; export default nextConfig;