@ -123,7 +123,6 @@ export class CompilerImports extends Plugin {
* @returns {Promise} - string content
*/
async resolveAndSave (url, targetPath) {
console.log('resolveAndSave', url, targetPath)
try {
if (targetPath && this.currentRequest) {
const canCall = await this.askUserPermission('resolveAndSave', 'This action will update the path ' + targetPath)
@ -131,7 +131,6 @@ export class RemixURLResolver {
// eslint-disable-next-line no-useless-catch
const req = 'https://unpkg.com/' + url
console.log('AXIOS VERSION', axios.VERSION)
const response: AxiosResponse = await axios.get(req, { transformResponse: [] })
return { content: response.data, cleanUrl: url }
} catch (e) {