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
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