UNPKG

15.4 kBJavaScriptView Raw
1'use strict';
2
3const autoprefixer = require('autoprefixer');
4const path = require('path');
5const webpack = require('webpack');
6const HtmlWebpackPlugin = require('html-webpack-plugin');
7const ExtractTextPlugin = require('extract-text-webpack-plugin');
8const ManifestPlugin = require('webpack-manifest-plugin');
9const InterpolateHtmlPlugin = require('react-dev-utils/InterpolateHtmlPlugin');
10const SWPrecacheWebpackPlugin = require('sw-precache-webpack-plugin');
11const eslintFormatter = require('react-dev-utils/eslintFormatter');
12const ModuleScopePlugin = require('react-dev-utils/ModuleScopePlugin');
13const paths = require('./paths');
14const getClientEnvironment = require('./env');
15
16// Webpack uses `publicPath` to determine where the app is being served from.
17// It requires a trailing slash, or the file assets will get an incorrect path.
18const publicPath = paths.servedPath;
19// Some apps do not use client-side routing with pushState.
20// For these, "homepage" can be set to "." to enable relative asset paths.
21const shouldUseRelativeAssetPaths = publicPath === './';
22// Source maps are resource heavy and can cause out of memory issue for large source files.
23const shouldUseSourceMap = process.env.GENERATE_SOURCEMAP !== 'false';
24// `publicUrl` is just like `publicPath`, but we will provide it to our app
25// as %PUBLIC_URL% in `index.html` and `process.env.PUBLIC_URL` in JavaScript.
26// Omit trailing slash as %PUBLIC_URL%/xyz looks better than %PUBLIC_URL%xyz.
27const publicUrl = publicPath.slice(0, -1);
28// Get environment variables to inject into our app.
29const env = getClientEnvironment(publicUrl);
30
31// Assert this just to be safe.
32// Development builds of React are slow and not intended for production.
33if (env.stringified['process.env'].NODE_ENV !== '"production"') {
34 throw new Error('Production builds must have NODE_ENV=production.');
35}
36
37// Note: defined here because it will be used more than once.
38const cssFilename = 'static/css/[name].[contenthash:8].css';
39
40// ExtractTextPlugin expects the build output to be flat.
41// (See https://github.com/webpack-contrib/extract-text-webpack-plugin/issues/27)
42// However, our output is structured with css, js and media folders.
43// To have this structure working with relative paths, we have to use custom options.
44const extractTextPluginOptions = shouldUseRelativeAssetPaths
45 ? // Making sure that the publicPath goes back to to build folder.
46 { publicPath: Array(cssFilename.split('/').length).join('../') }
47 : {};
48
49// This is the production configuration.
50// It compiles slowly and is focused on producing a fast and minimal bundle.
51// The development configuration is different and lives in a separate file.
52module.exports = {
53 // Don't attempt to continue if there are any errors.
54 bail: true,
55 // We generate sourcemaps in production. This is slow but gives good results.
56 // You can exclude the *.map files from the build during deployment.
57 devtool: shouldUseSourceMap ? 'source-map' : false,
58 // In production, we only want to load the polyfills and the app code.
59 entry: [require.resolve('./polyfills'), paths.appIndexJs],
60 output: {
61 // The build folder.
62 path: paths.appBuild,
63 // Generated JS file names (with nested folders).
64 // There will be one main bundle, and one file per asynchronous chunk.
65 // We don't currently advertise code splitting but Webpack supports it.
66 filename: 'static/js/[name].[chunkhash:8].js',
67 chunkFilename: 'static/js/[name].[chunkhash:8].chunk.js',
68 // We inferred the "public path" (such as / or /my-project) from homepage.
69 publicPath: publicPath,
70 // Point sourcemap entries to original disk location (format as URL on Windows)
71 devtoolModuleFilenameTemplate: info =>
72 path
73 .relative(paths.appSrc, info.absoluteResourcePath)
74 .replace(/\\/g, '/'),
75 },
76 resolve: {
77 // This allows you to set a fallback for where Webpack should look for modules.
78 // We placed these paths second because we want `node_modules` to "win"
79 // if there are any conflicts. This matches Node resolution mechanism.
80 // https://github.com/facebookincubator/create-react-app/issues/253
81 modules: ['node_modules', paths.appNodeModules].concat(
82 // It is guaranteed to exist because we tweak it in `env.js`
83 process.env.NODE_PATH.split(path.delimiter).filter(Boolean)
84 ),
85 // These are the reasonable defaults supported by the Node ecosystem.
86 // We also include JSX as a common component filename extension to support
87 // some tools, although we do not recommend using it, see:
88 // https://github.com/facebookincubator/create-react-app/issues/290
89 // `web` extension prefixes have been added for better support
90 // for React Native Web.
91 extensions: ['.web.js', '.mjs', '.js', '.json', '.web.jsx', '.jsx'],
92 alias: {
93
94 // Support React Native Web
95 // https://www.smashingmagazine.com/2016/08/a-glimpse-into-the-future-with-react-native-for-web/
96 'react-native': 'react-native-web',
97 },
98 plugins: [
99 // Prevents users from importing files from outside of src/ (or node_modules/).
100 // This often causes confusion because we only process files within src/ with babel.
101 // To fix this, we prevent you from importing files out of src/ -- if you'd like to,
102 // please link the files into your node_modules/ and let module-resolution kick in.
103 // Make sure your source files are compiled, as they will not be processed in any way.
104 new ModuleScopePlugin(paths.appSrc, [paths.appPackageJson]),
105 ],
106 },
107 module: {
108 strictExportPresence: true,
109 rules: [
110 // TODO: Disable require.ensure as it's not a standard language feature.
111 // We are waiting for https://github.com/facebookincubator/create-react-app/issues/2176.
112 // { parser: { requireEnsure: false } },
113
114 // First, run the linter.
115 // It's important to do this before Babel processes the JS.
116 {
117 test: /\.(js|jsx|mjs)$/,
118 enforce: 'pre',
119 use: [
120 {
121 options: {
122 formatter: eslintFormatter,
123 eslintPath: require.resolve('eslint'),
124
125 },
126 loader: require.resolve('eslint-loader'),
127 },
128 ],
129 include: paths.appSrc,
130 },
131 {
132 // "oneOf" will traverse all following loaders until one will
133 // match the requirements. When no loader matches it will fall
134 // back to the "file" loader at the end of the loader list.
135 oneOf: [
136 // "url" loader works just like "file" loader but it also embeds
137 // assets smaller than specified size as data URLs to avoid requests.
138 {
139 test: [/\.bmp$/, /\.gif$/, /\.jpe?g$/, /\.png$/],
140 loader: require.resolve('url-loader'),
141 options: {
142 limit: 10000,
143 name: 'static/media/[name].[hash:8].[ext]',
144 },
145 },
146 // Process JS with Babel.
147 {
148 test: /\.(js|jsx|mjs)$/,
149 include: paths.appSrc,
150 loader: require.resolve('babel-loader'),
151 options: {
152
153 compact: true,
154 },
155 },
156 // The notation here is somewhat confusing.
157 // "postcss" loader applies autoprefixer to our CSS.
158 // "css" loader resolves paths in CSS and adds assets as dependencies.
159 // "style" loader normally turns CSS into JS modules injecting <style>,
160 // but unlike in development configuration, we do something different.
161 // `ExtractTextPlugin` first applies the "postcss" and "css" loaders
162 // (second argument), then grabs the result CSS and puts it into a
163 // separate file in our build process. This way we actually ship
164 // a single CSS file in production instead of JS code injecting <style>
165 // tags. If you use code splitting, however, any async bundles will still
166 // use the "style" loader inside the async code so CSS from them won't be
167 // in the main CSS file.
168 {
169 test: /\.css$/,
170 loader: ExtractTextPlugin.extract(
171 Object.assign(
172 {
173 fallback: {
174 loader: require.resolve('style-loader'),
175 options: {
176 hmr: false,
177 },
178 },
179 use: [
180 {
181 loader: require.resolve('css-loader'),
182 options: {
183 importLoaders: 1,
184 minimize: true,
185 sourceMap: shouldUseSourceMap,
186 },
187 },
188 {
189 loader: require.resolve('postcss-loader'),
190 options: {
191 // Necessary for external CSS imports to work
192 // https://github.com/facebookincubator/create-react-app/issues/2677
193 ident: 'postcss',
194 plugins: () => [
195 require('postcss-flexbugs-fixes'),
196 autoprefixer({
197 browsers: [
198 '>1%',
199 'last 4 versions',
200 'Firefox ESR',
201 'not ie < 9', // React doesn't support IE8 anyway
202 ],
203 flexbox: 'no-2009',
204 }),
205 ],
206 },
207 },
208 ],
209 },
210 extractTextPluginOptions
211 )
212 ),
213 // Note: this won't work without `new ExtractTextPlugin()` in `plugins`.
214 },
215 // "file" loader makes sure assets end up in the `build` folder.
216 // When you `import` an asset, you get its filename.
217 // This loader doesn't use a "test" so it will catch all modules
218 // that fall through the other loaders.
219 {
220 loader: require.resolve('file-loader'),
221 // Exclude `js` files to keep "css" loader working as it injects
222 // it's runtime that would otherwise processed through "file" loader.
223 // Also exclude `html` and `json` extensions so they get processed
224 // by webpacks internal loaders.
225 exclude: [/\.(js|jsx|mjs)$/, /\.html$/, /\.json$/],
226 options: {
227 name: 'static/media/[name].[hash:8].[ext]',
228 },
229 },
230 // ** STOP ** Are you adding a new loader?
231 // Make sure to add the new loader(s) before the "file" loader.
232 ],
233 },
234 ],
235 },
236 plugins: [
237 // Makes some environment variables available in index.html.
238 // The public URL is available as %PUBLIC_URL% in index.html, e.g.:
239 // <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
240 // In production, it will be an empty string unless you specify "homepage"
241 // in `package.json`, in which case it will be the pathname of that URL.
242 new InterpolateHtmlPlugin(env.raw),
243 // Generates an `index.html` file with the <script> injected.
244 new HtmlWebpackPlugin({
245 inject: true,
246 template: paths.appHtml,
247 minify: {
248 removeComments: true,
249 collapseWhitespace: true,
250 removeRedundantAttributes: true,
251 useShortDoctype: true,
252 removeEmptyAttributes: true,
253 removeStyleLinkTypeAttributes: true,
254 keepClosingSlash: true,
255 minifyJS: true,
256 minifyCSS: true,
257 minifyURLs: true,
258 },
259 }),
260 // Makes some environment variables available to the JS code, for example:
261 // if (process.env.NODE_ENV === 'production') { ... }. See `./env.js`.
262 // It is absolutely essential that NODE_ENV was set to production here.
263 // Otherwise React will be compiled in the very slow development mode.
264 new webpack.DefinePlugin(env.stringified),
265 // Minify the code.
266 new webpack.optimize.UglifyJsPlugin({
267 compress: {
268 warnings: false,
269 // Disabled because of an issue with Uglify breaking seemingly valid code:
270 // https://github.com/facebookincubator/create-react-app/issues/2376
271 // Pending further investigation:
272 // https://github.com/mishoo/UglifyJS2/issues/2011
273 comparisons: false,
274 },
275 mangle: {
276 safari10: true,
277 },
278 output: {
279 comments: false,
280 // Turned on because emoji and regex is not minified properly using default
281 // https://github.com/facebookincubator/create-react-app/issues/2488
282 ascii_only: true,
283 },
284 sourceMap: shouldUseSourceMap,
285 }),
286 // Note: this won't work without ExtractTextPlugin.extract(..) in `loaders`.
287 new ExtractTextPlugin({
288 filename: cssFilename,
289 }),
290 // Generate a manifest file which contains a mapping of all asset filenames
291 // to their corresponding output file so that tools can pick it up without
292 // having to parse `index.html`.
293 new ManifestPlugin({
294 fileName: 'asset-manifest.json',
295 }),
296 // Generate a service worker script that will precache, and keep up to date,
297 // the HTML & assets that are part of the Webpack build.
298 new SWPrecacheWebpackPlugin({
299 // By default, a cache-busting query parameter is appended to requests
300 // used to populate the caches, to ensure the responses are fresh.
301 // If a URL is already hashed by Webpack, then there is no concern
302 // about it being stale, and the cache-busting can be skipped.
303 dontCacheBustUrlsMatching: /\.\w{8}\./,
304 filename: 'service-worker.js',
305 logger(message) {
306 if (message.indexOf('Total precache size is') === 0) {
307 // This message occurs for every build and is a bit too noisy.
308 return;
309 }
310 if (message.indexOf('Skipping static resource') === 0) {
311 // This message obscures real errors so we ignore it.
312 // https://github.com/facebookincubator/create-react-app/issues/2612
313 return;
314 }
315 console.log(message);
316 },
317 minify: true,
318 // For unknown URLs, fallback to the index page
319 navigateFallback: publicUrl + '/index.html',
320 // Ignores URLs starting from /__ (useful for Firebase):
321 // https://github.com/facebookincubator/create-react-app/issues/2237#issuecomment-302693219
322 navigateFallbackWhitelist: [/^(?!\/__).*/],
323 // Don't precache sourcemaps (they're large) and build asset manifest:
324 staticFileGlobsIgnorePatterns: [/\.map$/, /asset-manifest\.json$/],
325 }),
326 // Moment.js is an extremely popular library that bundles large locale files
327 // by default due to how Webpack interprets its code. This is a practical
328 // solution that requires the user to opt into importing specific locales.
329 // https://github.com/jmblog/how-to-optimize-momentjs-with-webpack
330 // You can remove this if you don't use Moment.js:
331 new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
332 ],
333 // Some libraries import Node modules but don't use them in the browser.
334 // Tell Webpack to provide empty mocks for them so importing them works.
335 node: {
336 dgram: 'empty',
337 fs: 'empty',
338 net: 'empty',
339 tls: 'empty',
340 child_process: 'empty',
341 },
342};