-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnext.config.js
35 lines (35 loc) · 1.57 KB
/
next.config.js
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
module.exports = (phase, { defaultConfig }) => {
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
output: process.env.NODE_ENV == "production" ? "export" : undefined,
distDir: "dest",
images: {
loader: 'custom',
domains: [
'avatars.slack-edge.com',
'a.slack-edge.com',
'secure.gravatar.com',
],
},
// build-timeに評価されることに注意
env: {
API_BASE_URL: process.env.NODE_ENV == "production" ? "" : "http://localhost:8080",
HELP_PAGE_URL: "https://sites.google.com/view/how-to-use-triax-hub",
},
/** useFileSystemPublicRoutes について
* - https://nextjs.org/docs/advanced-features/custom-server#disabling-file-system-routing
* - https://github.com/vercel/next.js/issues/2682#issuecomment-370664352
* これ、nodejsのnextライブラリをつくってproductionサーバ建てるときの仕様で、
* Goで認証/非認証判定するサーバ書く限りはあんまり意味ない。
* @See https://github.com/vercel/next.js/search?q=useFileSystemPublicRoutes
* なので、コンポーネントで `next/link` の <Link> を使うのではなくて、
* nativeな <a> を使うことで、pushStateを阻止し、必ずサーバにGETリクエストが飛ぶようにした。
* lintで、 `next/link`を使えというwarning出るが、それはeslintrcで黙らせました。
* しゃーないやろ、Node.jsでサーバ建てたくないんやから。
*/
// useFileSystemPublicRoutes: false,
}
return nextConfig
}