fix(plugin): debug option broken (#117)

master
Alexander Lichter 2020-07-16 19:17:51 +02:00 committed by GitHub
parent b54e965f4b
commit 6bc12959a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ const createHttpInstance = options => {
const http = new HTTP(options)
// Setup interceptors
<% if (options.debug) { %>setupDebugInterceptor(axios) <% } %>
<% if (options.debug) { %>setupDebugInterceptor(http) <% } %>
return http
}