import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "export", transpilePackages: ["@snapotter/shared"], webpack: (config) => { config.resolve.extensionAlias = { ".js": [".ts", ".tsx", ".js"], }; return config; }, }; export default nextConfig;