@assemble-inc/chat-widget 0.1.2 → 0.1.3
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 +3 -3
- package/dist/embed.iife.js +379 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -65,7 +65,7 @@ app.post(
|
|
|
65
65
|
}),
|
|
66
66
|
);
|
|
67
67
|
|
|
68
|
-
app.listen(
|
|
68
|
+
app.listen(3006);
|
|
69
69
|
```
|
|
70
70
|
|
|
71
71
|
### 3. Environment variables
|
|
@@ -265,11 +265,11 @@ npm install
|
|
|
265
265
|
# Copy and fill in environment variables
|
|
266
266
|
cp .env.example .env
|
|
267
267
|
|
|
268
|
-
# Start the Vite dev server (port 3003) + Express API server (port
|
|
268
|
+
# Start the Vite dev server (port 3003) + Express API server (port 3006)
|
|
269
269
|
npm run dev
|
|
270
270
|
```
|
|
271
271
|
|
|
272
|
-
The Vite dev server proxies `/api/*` to `http://localhost:
|
|
272
|
+
The Vite dev server proxies `/api/*` to `http://localhost:3006`.
|
|
273
273
|
|
|
274
274
|
```bash
|
|
275
275
|
npm run lint # type-check without emitting
|