@spaceandtimelabs/makeinfinite-ui 0.73.0-beta.8 → 0.73.0-beta.9
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/README.md
CHANGED
|
@@ -64,12 +64,30 @@ npm install
|
|
|
64
64
|
yarn install
|
|
65
65
|
```
|
|
66
66
|
|
|
67
|
-
2.
|
|
67
|
+
2. Serve CDN server
|
|
68
|
+
|
|
69
|
+
This command will build makeinfinite-ui in DEV mode so it's easier for debugging as well as serve the build files to be accessed through CDN
|
|
68
70
|
|
|
69
71
|
```bash
|
|
70
|
-
npm run
|
|
72
|
+
npm run serve-cdn
|
|
71
73
|
# or
|
|
72
|
-
yarn
|
|
74
|
+
yarn serve-cdn
|
|
75
|
+
```
|
|
76
|
+
_Optional:_ Test that serving CDN worked
|
|
77
|
+
```bash
|
|
78
|
+
yarn test-cdn
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
3. Update the bff script to point to the above CDN url
|
|
82
|
+
4. Update index requestedHost to your miniapp url
|
|
83
|
+
```js
|
|
84
|
+
// Example:
|
|
85
|
+
const requestedHost = "brewingbliss.cosmics.app";
|
|
86
|
+
```
|
|
87
|
+
5. Start bff
|
|
88
|
+
```bash
|
|
89
|
+
cd /your-path/dreamspace-miniapp-bff
|
|
90
|
+
yarn dev
|
|
73
91
|
```
|
|
74
92
|
|
|
75
93
|
### Project Structure
|
|
@@ -122042,3 +122042,4 @@ export {
|
|
|
122042
122042
|
oxe as useRGContext,
|
|
122043
122043
|
AJt as useWebSocketManager
|
|
122044
122044
|
};
|
|
122045
|
+
//# sourceMappingURL=makeinfinite-ui.es.js.map
|