Use url_for for all static paths

This commit is contained in:
richard-dds
2019-11-12 12:53:17 -05:00
committed by dandds
parent 436cbcffe4
commit 7ace430dee
7 changed files with 8 additions and 6 deletions

View File

@@ -6,6 +6,7 @@
"scripts": {
"watch": "parcel watch js/index.js -d static/assets --public-url /static/assets -o index.js --no-autoinstall",
"build": "parcel build js/index.js -d static/assets --public-url /static/assets -o index.js",
"build-prod": "parcel build js/index.js -d static/assets --public-url $CDN_URL -o index.js",
"test": "jest",
"test:coverage": "jest --coverage --collectCoverageFrom='js/**/*.js'",
"test:watch": "jest --watch --no-cache"