fix: use relative asset paths for IPFS

This commit is contained in:
Joshua Seigler 2021-11-24 20:01:25 -05:00
parent a7af1fc03a
commit a1c474cf5d

View file

@ -7,8 +7,8 @@
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {
"clean": "rimraf ./dist ./.cache ./.parcel-cache", "clean": "rimraf ./dist ./.cache ./.parcel-cache",
"build": "parcel build index.html --no-scope-hoist", "build": "parcel build index.html --no-scope-hoist --public-url ./",
"serve": "parcel serve index.html --open -p 8888", "serve": "parcel serve index.html --open -p 8888 --public-url ./",
"start": "npm run serve", "start": "npm run serve",
"test": "npm run build && playwright test tests --browser=firefox --retries=3" "test": "npm run build && playwright test tests --browser=firefox --retries=3"
}, },