Skip to content

Commit

Permalink
fix(dev): devサーバーで/notes/に直でアクセスしたらサーバー側のレスポンスが返ってくる問題を修正 (#14137)
Browse files Browse the repository at this point in the history
  • Loading branch information
kakkokari-gtyih authored Jul 6, 2024
1 parent 6dd2e9f commit b9ed3b2
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions packages/frontend/vite.config.local-dev.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import dns from 'dns';
import { readFile } from 'node:fs/promises';
import type { IncomingMessage } from 'node:http';
import { defineConfig } from 'vite';
import type { UserConfig } from 'vite';
import * as yaml from 'js-yaml';
import locales from '../../locales/index.js';
import { getConfig } from './vite.config.js';
Expand All @@ -14,7 +16,15 @@ const { port } = yaml.load(await readFile('../../.config/default.yml', 'utf-8'))
const httpUrl = `http://localhost:${port}/`;
const websocketUrl = `ws://localhost:${port}/`;

const devConfig = {
// activitypubリクエストはProxyを通し、それ以外はViteの開発サーバーを返す
function varyHandler(req: IncomingMessage) {
if (req.headers.accept?.includes('application/activity+json')) {
return null;
}
return '/index.html';
}

const devConfig: UserConfig = {
// 基本の設定は vite.config.js から引き継ぐ
...defaultConfig,
root: 'src',
Expand Down Expand Up @@ -54,15 +64,11 @@ const devConfig = {
'/inbox': httpUrl,
'/notes': {
target: httpUrl,
headers: {
'Accept': 'application/activity+json',
},
bypass: varyHandler,
},
'/users': {
target: httpUrl,
headers: {
'Accept': 'application/activity+json',
},
bypass: varyHandler,
},
'/.well-known': {
target: httpUrl,
Expand Down

0 comments on commit b9ed3b2

Please sign in to comment.