@speedkit/cli 3.25.0 → 3.26.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
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [3.26.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.25.0...v3.26.0) (2026-02-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **customer-config:** add main domain to ssr allowlist by default ([41f5b96](https://gitlab.orestes.info/baqend/speed-kit-cli/commit/41f5b96c3a32fb9a2299a9e7b587c493fba08086))
|
|
7
|
+
|
|
1
8
|
# [3.25.0](https://gitlab.orestes.info/baqend/speed-kit-cli/compare/v3.24.1...v3.25.0) (2026-02-09)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -171,8 +171,16 @@ const config = {
|
|
|
171
171
|
],
|
|
172
172
|
rules: {
|
|
173
173
|
url: [
|
|
174
|
-
//
|
|
175
|
-
|
|
174
|
+
// Asset Sub-Paths on Main Domains:
|
|
175
|
+
// TODO: identify and declare specific asset sub-paths instead of putting entire domains on the allowlist
|
|
176
|
+
// (e.g. www.domain.de/media/css instead of www.domain.de)
|
|
177
|
+
"{{production.host}}",
|
|
178
|
+
{{#if staging.host}}
|
|
179
|
+
"{{staging.host}}",
|
|
180
|
+
{{/if}}
|
|
181
|
+
|
|
182
|
+
// Additional Asset Domains:
|
|
183
|
+
// '<domain>',
|
|
176
184
|
],
|
|
177
185
|
resourceType: [
|
|
178
186
|
// only resource types listed here will be fetched
|
package/oclif.manifest.json
CHANGED