create-skateboard-app 1.0.9 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -0
- package/bin/cli.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/bin/cli.js
CHANGED
|
@@ -241,8 +241,8 @@ async function collectProjectConfig(projectName) {
|
|
|
241
241
|
}
|
|
242
242
|
|
|
243
243
|
// Default values for removed questions
|
|
244
|
-
const backendURL = '
|
|
245
|
-
const devBackendURL = 'http://localhost:8000';
|
|
244
|
+
const backendURL = '/api';
|
|
245
|
+
const devBackendURL = 'http://localhost:8000/api';
|
|
246
246
|
const companyName = 'Your Company';
|
|
247
247
|
|
|
248
248
|
// Read pages from the downloaded template's constants.json
|