mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 04:01:07 +08:00
Official examples: apply babel-preset-minify only in production mode
This commit is contained in:
parent
d7495fbaad
commit
c5012b40a4
@ -1,6 +1,6 @@
|
||||
const path = require('path');
|
||||
|
||||
module.exports = async ({ config }) => ({
|
||||
module.exports = async ({ config, mode }) => ({
|
||||
...config,
|
||||
module: {
|
||||
...config.module,
|
||||
@ -16,10 +16,13 @@ module.exports = async ({ config }) => ({
|
||||
presets: [
|
||||
['@babel/preset-env', { shippedProposals: true, useBuiltIns: 'usage', corejs: 3 }],
|
||||
'@babel/preset-typescript',
|
||||
['babel-preset-minify', { builtIns: false, mangle: false }],
|
||||
mode === 'PRODUCTION' && [
|
||||
'babel-preset-minify',
|
||||
{ builtIns: false, mangle: false },
|
||||
],
|
||||
'@babel/preset-react',
|
||||
'@babel/preset-flow',
|
||||
],
|
||||
].filter(Boolean),
|
||||
plugins: [
|
||||
'@babel/plugin-proposal-object-rest-spread',
|
||||
'@babel/plugin-proposal-class-properties',
|
||||
|
Loading…
x
Reference in New Issue
Block a user