Tim Schraepen
Tim Schraepen
I think I'm running into the same issue when trying to deploy to (the CDN of) darklang.com. When I configure `publicPath: DARK_STATIC_ASSETS_BASE_URL` the resulting index.html has links referencing `/DARK_STATIC_ASSETS_BASE_URL` instead...
Just like Ryan, I ended up using `sed` to string-replace the resulting index.html in a post-build script: `sed -i .bak 's/\/DARK_STATIC_ASSETS_BASE_URL/DARK_STATIC_ASSETS_BASE_URL/g' dist/index.html` _app-root/.env.dark_: `PUBLIC_PATH=DARK_STATIC_ASSETS_BASE_URL` _app-root/package.json_: `"scripts": { "dark": "vue-cli-service build...