12 lines
214 B
JavaScript
12 lines
214 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
experimental: {
|
|
serverComponentsExternalPackages: ["shiki"],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|