9 lines
174 B
JavaScript
9 lines
174 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
serverComponentsExternalPackages: ["@deno/kv"]
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|