mirror of
https://github.com/dnote/dnote
synced 2026-03-17 07:55:50 +01:00
Fix asset path (#257)
This commit is contained in:
parent
35c41a219e
commit
6e8a70dbd0
1 changed files with 8 additions and 8 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue