We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 102f136 commit 8f9ec27Copy full SHA for 8f9ec27
packages/bundler-mako/index.js
@@ -565,7 +565,10 @@ async function getMakoConfig(opts) {
565
const outputPath = path.resolve(opts.cwd, opts.config.outputPath || 'dist');
566
const tsConfig = getTsConfig(opts);
567
568
- const normalizedDevtool = devtool === false ? false : 'source-map';
+ let normalizedDevtool = 'source-map';
569
+ if ([false, 'inline-source-map'].includes(devtool)) {
570
+ normalizedDevtool = devtool;
571
+ }
572
573
let makoCodeSplittingConfig =
574
codeSplitting === false
0 commit comments