From cc4b56e95487810f5109bf260f7d07604eafbc0e Mon Sep 17 00:00:00 2001 From: Tom Jenkinson Date: Thu, 25 Mar 2021 07:45:18 +0000 Subject: [PATCH] fix `sourcemap` reference in docs (#4012) --- docs/08-troubleshooting.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/08-troubleshooting.md b/docs/08-troubleshooting.md index c0e40853e04..74760ed0a46 100644 --- a/docs/08-troubleshooting.md +++ b/docs/08-troubleshooting.md @@ -64,9 +64,9 @@ There are occasional valid reasons for `this` to mean something else. If you're ### Warning: "Sourcemap is likely to be incorrect" -You'll see this warning if you generate a sourcemap with your bundle (`sourceMap: true` or `sourceMap: 'inline'`) but you're using one or more plugins that transformed code without generating a sourcemap for the transformation. +You'll see this warning if you generate a sourcemap with your bundle (`sourcemap: true` or `sourcemap: 'inline'`) but you're using one or more plugins that transformed code without generating a sourcemap for the transformation. -Usually, a plugin will only omit the sourcemap if it (the plugin, not the bundle) was configured with `sourceMap: false` – so all you need to do is change that. If the plugin doesn't generate a sourcemap, consider raising an issue with the plugin author. +Usually, a plugin will only omit the sourcemap if it (the plugin, not the bundle) was configured with `sourcemap: false` – so all you need to do is change that. If the plugin doesn't generate a sourcemap, consider raising an issue with the plugin author. ### Warning: "Treating [module] as external dependency" @@ -108,4 +108,4 @@ export default { } } }; -``` \ No newline at end of file +```