Skip to content

Commit 8e34c0f

Browse files
committed
fix: removed console logging
1 parent c8245d7 commit 8e34c0f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Vue from 'vue'
22
import { resolve } from 'path'
33
import { Module, Plugin } from '@nuxt/types'
4-
import { ContentItem, DeliveryClient, IDeliveryClientConfig, MultipleItemQuery } from '@kentico/kontent-delivery'
4+
import { IDeliveryClientConfig } from '@kentico/kontent-delivery'
55
import defu from 'defu'
66
import { logger } from './utilties/logger'
77
import chalk from 'chalk'
@@ -21,8 +21,6 @@ export interface ModuleOptions extends RequireOne<IDeliveryClientConfig, 'projec
2121
const deliveryClientModule: Module<IDeliveryClientConfig> = function (moduleOptions) {
2222
const options = defu<ModuleOptions, IDeliveryClientConfig>(this.options.kenticokontent, moduleOptions)
2323

24-
console.log("Module is initializing...")
25-
2624
if (!options.projectId) {
2725
logger.error(`You need to provide ${chalk.yellow('projectId')} to set up Kentico Kontent. See 👉 https://github.com/Domitnator/kentico-kontent-nuxt-module for more info.`)
2826
return

0 commit comments

Comments
 (0)