diff --git a/.devcontainer/dev.docker-compose.yml b/.devcontainer/dev.docker-compose.yml index aeae64a..58a02a8 100644 --- a/.devcontainer/dev.docker-compose.yml +++ b/.devcontainer/dev.docker-compose.yml @@ -18,7 +18,6 @@ services: BIN_DEPLOY_REQ: ${BIN_DEPLOY_REQ} SSH_AUTH_SOCK: /ssh-agent BUN_BIN: ${BUN_BIN_R} - SSH_AUTH_SOCK: /ssh-agent volumes: - ${SSH_AUTH_SOCK:-/dev/null}:/ssh-agent - .:/workspace diff --git a/packages/presentation/vite.config.ts b/packages/presentation/vite.config.ts index b6d9d2a..354370e 100644 --- a/packages/presentation/vite.config.ts +++ b/packages/presentation/vite.config.ts @@ -129,6 +129,9 @@ function createDefaultServer(): PreviewOptions | ServerOptions { strictPort: true, fs: { strict: false }, hmr: { + protocol: 'ws', + host: 'localhost', + port: getNginxPort(), clientPort: getNginxPort(), path: '/_ws', },