You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.
I'm trying to create a build with a base url "/test" for the project. According to documentation, I have to use "basePath": "/test" on the build to let this value in the base href on the built index.html. I use "name": "testing" as the name of the build.
After building, I have a folder called "testing" inside the build folder but the base href points also to base href="/testing/".
I'm trying to create a build with a base url "/test" for the project. According to documentation, I have to use "basePath": "/test" on the build to let this value in the base href on the built index.html. I use "name": "testing" as the name of the build.
After building, I have a folder called "testing" inside the build folder but the base href points also to base href="/testing/".
"builds": [
{
"name": "testing",
"basePath" : "/test",
"browserCapabilities": [
"es2015"
],
"js": {
"compile": "es2015",
"minify": true,
"transformModulesToAmd": true
},
"css": {
"minify": true
},
"html": {
"minify": true
},
"bundle": true,
"addServiceWorker": true
}
],
Am I doing something wrong or it's not working properly?
Thanks in advance,
Higi
The text was updated successfully, but these errors were encountered: