-
{thread.title}
+
{thread.name}
-
{thread.description}
+
+ {thread.description?.replaceAll ('\r\n', '\n')
+ .replaceAll ('\r', '\n')
+ .split ('\n')
+ .map (l =>
{l}
)}
+
-
-
{thread.postCount} レス
-
{thread.updatedAt} 更新
-
{thread.createdAt} 作成
+
+ {thread.postCount} レス
+ {thread.updatedAt} 更新
+ {thread.createdAt} 作成
))
: 'スレないよ(笑).')}
diff --git a/frontend/vite.config.ts b/frontend/vite.config.ts
index 4a72a9b..8014ebe 100644
--- a/frontend/vite.config.ts
+++ b/frontend/vite.config.ts
@@ -6,5 +6,5 @@ import path from 'path'
export default defineConfig({
plugins: [react()],
resolve: { alias: { '@': path.resolve (__dirname, './src') } },
- server: { host: true },
+ server: { host: true, allowedHosts: ['miteruzo.com', 'bbs.kekec.wiki'] },
})