Files
klz-cables.com/.pnpm-store/v10/files/d3/50302c3bd26ee85990521ba7dfb080bd20546ed0f8f541d9e7e583ac42eca56969406e6bda6f5d92c41c91fbbdbb20a0392c1e570d37de4d70c04de24bbc41
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

14 lines
317 B
Plaintext

import baseConfig from './config.base.js';
import { terser } from 'rollup-plugin-terser';
import pkg from './packageJson.js';
export default {
...baseConfig,
output: {
...baseConfig.output,
file: pkg.browser.replace('umd', 'min'),
format: 'umd',
},
plugins: [...baseConfig.plugins, terser()],
};