File tree 1 file changed +13
-0
lines changed
packages/react-scripts/config
1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,19 @@ const eslintFormatter = require('react-dev-utils/eslintFormatter');
22
22
const ModuleScopePlugin = require ( 'react-dev-utils/ModuleScopePlugin' ) ;
23
23
const paths = require ( './paths' ) ;
24
24
const getClientEnvironment = require ( './env' ) ;
25
+ var autoprefixer = require ( 'autoprefixer' ) ;
26
+ var webpack = require ( 'webpack' ) ;
27
+ var HtmlWebpackPlugin = require ( 'html-webpack-plugin' ) ;
28
+ var ExtractTextPlugin = require ( 'extract-text-webpack-plugin' ) ;
29
+ var ManifestPlugin = require ( 'webpack-manifest-plugin' ) ;
30
+ var InterpolateHtmlPlugin = require ( 'react-dev-utils/InterpolateHtmlPlugin' ) ;
31
+ var paths = require ( './paths' ) ;
32
+ var getClientEnvironment = require ( './env' ) ;
33
+
34
+ // @remove -on-eject-begin
35
+ // `path` is not used after eject - see https://github.com/facebookincubator/create-react-app/issues/1174
36
+ var path = require ( 'path' ) ;
37
+ // @remove -on-eject-end
25
38
26
39
// Webpack uses `publicPath` to determine where the app is being served from.
27
40
// It requires a trailing slash, or the file assets will get an incorrect path.
You can’t perform that action at this time.
0 commit comments