Bluesky app fork with some witchin' additions 💫 witchsky.app
bluesky fork client
117
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: make profile pages work in dev

xan.lol 70812aa3 ab8e3dc8

+12 -1
+5 -1
rspack.config.ts
··· 434 434 }, 435 435 port: 19006, 436 436 hot: true, 437 - historyApiFallback: true, 437 + historyApiFallback: { 438 + // Handles like `xan.lol` contain dots, which the default history 439 + // fallback treats as asset requests instead of app routes. 440 + disableDotRule: true, 441 + }, 438 442 compress: true, 439 443 }, 440 444
+7
webpack.config.js
··· 39 39 ] 40 40 if (env.mode === 'development') { 41 41 config.plugins.push(new ReactRefreshWebpackPlugin()) 42 + config.devServer = config.devServer || {} 43 + config.devServer.historyApiFallback = { 44 + ...(config.devServer.historyApiFallback || {}), 45 + // Handles like `xan.lol` contain dots, which the default history 46 + // fallback treats as asset requests instead of app routes. 47 + disableDotRule: true, 48 + } 42 49 // Reap zombie HMR WebSocket connections that linger after refresh. 43 50 // Without this, dead sockets exhaust the browser's per-origin connection 44 51 // pool and the dev server stops responding.