Skip to content

Commit 0927267

Browse files
committed
fix(plugin): remove debug log statement
1 parent f9d4ff4 commit 0927267

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

packages/analytics/src/plugin/routes.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,9 +304,8 @@ export function withRoutes(nextConfig: NextConfig = {}): NextConfig {
304304
return {
305305
...nextConfig,
306306
webpack(config: any, options: any) {
307-
const { isServer, dir, dev } = options;
307+
const { isServer, dir } = options;
308308

309-
console.log(isServer, dir, dev);
310309
// Only run on server-side build
311310
if (isServer) {
312311
const baseDir = getBaseDir(dir);

0 commit comments

Comments
 (0)