Fix asset path

This commit is contained in:
Sung Won Cho 2019-09-30 15:47:02 +08:00
commit 70cf8db776

View file

@ -6,13 +6,13 @@ basePath="$GOPATH/src/github.com/dnote/dnote"
publicPath="$basePath/web/public"
compiledPath="$basePath/web/compiled"
baseUrl=""
assetBaseUrl=""
bundleBaseUrl="/static"
assetBaseUrl="/static"
rootUrl=""
BUNDLE_BASE_URL=$baseUrl \
ASSET_BASE_URL=$assetBaseUrl \
ROOT_URL=$rootUrl \
PUBLIC_PATH=$publicPath \
COMPILED_PATH=$compiledPath \
"$basePath"/web/scripts/build.sh
BUNDLE_BASE_URL="$bundleBaseUrl" \
ASSET_BASE_URL="$assetBaseUrl" \
ROOT_URL="$rootUrl" \
PUBLIC_PATH="$publicPath" \
COMPILED_PATH="$compiledPath" \
"$basePath"/web/scripts/build.sh