You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const pathToLanguage = './prism-' + lang
line 42: delete require.cache[require.resolve(pathToLanguage)] // Packages cannot be imported correctly here
line 45: require(pathToLanguage) // Packages cannot be imported correctly here
advice:
line 42 -> delete require.cache[require.resolve(`./prism-${lang}`)]
line 45 -> require(`./prism-${lang}`)
The text was updated successfully, but these errors were encountered:
url: prismjs/components/index.vue
example:
code:
error:
target:
origin code:
advice:
The text was updated successfully, but these errors were encountered: