File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 1
1
import { configure } from '@storybook/react' ;
2
- import '@formatjs/intl-relativetimeformat/polyfill' ;
3
- import '@formatjs/intl-relativetimeformat/locale-data/en' ;
4
2
import React from 'react' ;
5
3
import { addDecorator } from '@storybook/react' ;
6
4
import { withKnobs } from '@storybook/addon-knobs' ;
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ const path = require('path');
6
6
const webpack = require ( 'webpack' ) ;
7
7
const HtmlWebpackPlugin = require ( 'html-webpack-plugin' ) ;
8
8
const CircularDependencyPlugin = require ( 'circular-dependency-plugin' ) ;
9
- const BundleAnalyzerPlugin = require ( 'webpack-bundle-analyzer' ) . BundleAnalyzerPlugin ;
10
9
11
10
module . exports = require ( './webpack.config.base' ) ( {
12
11
mode : 'development' ,
@@ -38,8 +37,7 @@ module.exports = require('./webpack.config.base')({
38
37
new CircularDependencyPlugin ( {
39
38
exclude : / a \. j s | n o d e _ m o d u l e s / , // exclude node_modules
40
39
failOnError : false // show a warning when there is a circular dependency
41
- } ) ,
42
- new BundleAnalyzerPlugin ( )
40
+ } )
43
41
] ,
44
42
45
43
// Emit a source map for easier debugging
You can’t perform that action at this time.
0 commit comments