8 lines
167 B
TypeScript
8 lines
167 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
transpilePackages: ["react-globe.gl", "globe.gl", "three"],
|
|
};
|
|
|
|
export default nextConfig;
|