From e586f99cb16a95da6b4e51dcf36230fc54648f59 Mon Sep 17 00:00:00 2001 From: Arik Fraimovich Date: Mon, 16 Jan 2017 15:10:01 +0200 Subject: [PATCH] Fix content-base option of webpack-dev-server --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 08ee227b42..420000012f 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "The frontend part of Redash.", "main": "index.js", "scripts": { - "start": "webpack-dev-server --content-base app", + "start": "webpack-dev-server --content-base client/app", "build": "rm -rf ./client/dist/ && NODE_ENV=production node node_modules/.bin/webpack", "watch": "webpack --watch --progress --colors -d" },