We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fcea63 commit 06993d2Copy full SHA for 06993d2
packages/bundler-webpack/src/config/config.ts
@@ -67,7 +67,7 @@ export async function getConfig(opts: IOpts): Promise<Configuration> {
67
const config = new Config();
68
userConfig.targets ||= DEFAULT_BROWSER_TARGETS;
69
// normalize inline limit
70
- userConfig.inlineLimit = parseInt(userConfig.inlineLimit || '10000', 10);
+ userConfig.inlineLimit = parseInt(userConfig.inlineLimit ?? '10000', 10);
71
const useHash = !!(opts.hash || (userConfig.hash && !isDev));
72
const applyOpts = {
73
name: opts.name,
0 commit comments