From c841b68a8fc2e91abfa9af803ff4f95676dfaada Mon Sep 17 00:00:00 2001 From: Stephen Fraser Date: Fri, 23 Feb 2018 12:06:16 +0000 Subject: [PATCH] publicPath cannot be null Webpack validation fails: > webpack.publicPath = 'type: null' > Must be a String --- docs/Configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Configuration.md b/docs/Configuration.md index c46e5084..8efc7b3b 100644 --- a/docs/Configuration.md +++ b/docs/Configuration.md @@ -637,7 +637,7 @@ module.exports = { The exception is the React component demo app, which doesn't set a `publicPath`, generating a build without any root URL paths to static resources. This allows you to serve it at any path without configuration (e.g. on GitHub Project Pages), or open the generated `index.html` file directly in a browser, which is ideal for distributing app builds which don't require a server to run. -If you want to create a path-independent build, set `publicPath` to blank or `null`: +If you want to create a path-independent build, set `publicPath` to blank: ```js module.exports = {