14 lines
311 B
JavaScript
14 lines
311 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
transpilePackages: ['@bmad/core', '@bmad/ui'],
|
|
experimental: {
|
|
serverComponentsExternalPackages: ['@bmad/core'],
|
|
},
|
|
images: {
|
|
domains: ['avatars.githubusercontent.com'],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|