From 5c3ab84fdfcfcb92c64f540f1009bfdbf47159cf Mon Sep 17 00:00:00 2001 From: Shmavon Gazanchyan Date: Thu, 6 Oct 2016 01:08:08 +0100 Subject: [PATCH] Correct a comment mistype in webpack production config (#855) --- 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 2fb3035719..03fa141447 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);