From a1a7d8bf3e33e068ca5b912c71231f3fdb94b711 Mon Sep 17 00:00:00 2001 From: Shmavon Gazanchyan Date: Wed, 5 Oct 2016 20:14:05 +0100 Subject: [PATCH] Correct a comment mistype in webpack production config --- packages/react-scripts/config/webpack.config.prod.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-scripts/config/webpack.config.prod.js b/packages/react-scripts/config/webpack.config.prod.js index 2fb3035719e..03fa1414471 100644 --- a/packages/react-scripts/config/webpack.config.prod.js +++ b/packages/react-scripts/config/webpack.config.prod.js @@ -42,7 +42,7 @@ var homepagePathname = homepagePath ? url.parse(homepagePath).pathname : '/'; var publicPath = ensureSlash(homepagePathname, true); // `publicUrl` is just like `publicPath`, but we will provide it to our app // as %PUBLIC_URL% in `index.html` and `process.env.PUBLIC_URL` in JavaScript. -// Omit trailing shlash as %PUBLIC_PATH%/xyz looks better than %PUBLIC_PATH%xyz. +// Omit trailing slash as %PUBLIC_PATH%/xyz looks better than %PUBLIC_PATH%xyz. var publicUrl = ensureSlash(homepagePathname, false); // Get environment variables to inject into our app. var env = getClientEnvironment(publicUrl);