-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathserver.ts
45 lines (35 loc) Β· 1.21 KB
/
server.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
const express = require('express')
const next = require('next')
const { parse } = require('url')
const { basename } = require('path')
const accepts = require('accepts')
const glob = require('glob')
const nextI18NextMiddleware = require('next-i18next/middleware')
import nextI18next from './i18n'
const port = process.env.PORT || 3000
const dev = process.env.NODE_ENV !== 'production'
const app = next({ dev })
const handle = app.getRequestHandler()
const mobxReact = require('mobx-react')
mobxReact.useStaticRendering(true)
const supportedLanguages = glob
.sync('./locales/*.json')
.map((f: any) => basename(f, '.json'))
app.prepare().then(() => {
const server = express()
server.use(nextI18NextMiddleware(nextI18next))
server.get('*', (req: any, res: any) => {
const parsedUrl = parse(req.url, true)
const accept = accepts(req)
const isParsedUrlLang = !!parsedUrl.query.lang
const acceptLang = accept.language(accept.languages(supportedLanguages))
if (!isParsedUrlLang && acceptLang) {
parsedUrl.query.lang = acceptLang
}
return handle(req, res, parsedUrl)
})
server.listen(port, (err: any) => {
if (err) throw err
console.log(`> Ready on http://localhost:${port}`)
})
})