We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f6f7c88 + 1549ae8 commit 3c5515bCopy full SHA for 3c5515b
.github/workflows/build-release.yml
@@ -15,6 +15,9 @@ jobs:
15
- name: Checkout repository
16
uses: actions/checkout@v4
17
18
+ - name: Populate design system submodule
19
+ run: git submodule update --init
20
+
21
- name: Setup Node.js
22
uses: actions/setup-node@v4
23
with:
vite.config.js
@@ -3,6 +3,9 @@ import { defineConfig } from 'vite';
3
export default defineConfig({
4
root: './client',
5
server: {
6
+ host: '0.0.0.0',
7
+ hmr: true,
8
+ allowedHosts: true,
9
port: 3000,
10
proxy: {
11
'/message': {
0 commit comments