mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
Fix typos on next-server.js comments. (#5672)
This commit is contained in:
parent
e930d1e821
commit
0d77dda28c
|
@ -120,9 +120,9 @@ export default class Server {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// It's very important keep this route's param optional.
|
// It's very important to keep this route's param optional.
|
||||||
// (but it should support as many as params, seperated by '/')
|
// (but it should support as many params as needed, separated by '/')
|
||||||
// Othewise this will lead to a pretty simple DOS attack.
|
// Otherwise this will lead to a pretty simple DOS attack.
|
||||||
// See more: https://github.com/zeit/next.js/issues/2617
|
// See more: https://github.com/zeit/next.js/issues/2617
|
||||||
match: route('/static/:path*'),
|
match: route('/static/:path*'),
|
||||||
fn: async (req, res, params) => {
|
fn: async (req, res, params) => {
|
||||||
|
@ -133,9 +133,9 @@ export default class Server {
|
||||||
]
|
]
|
||||||
|
|
||||||
if (this.nextConfig.useFileSystemPublicRoutes) {
|
if (this.nextConfig.useFileSystemPublicRoutes) {
|
||||||
// It's very important keep this route's param optional.
|
// It's very important to keep this route's param optional.
|
||||||
// (but it should support as many as params, seperated by '/')
|
// (but it should support as many params as needed, separated by '/')
|
||||||
// Othewise this will lead to a pretty simple DOS attack.
|
// Otherwise this will lead to a pretty simple DOS attack.
|
||||||
// See more: https://github.com/zeit/next.js/issues/2617
|
// See more: https://github.com/zeit/next.js/issues/2617
|
||||||
routes.push({
|
routes.push({
|
||||||
match: route('/:path*'),
|
match: route('/:path*'),
|
||||||
|
|
Loading…
Reference in a new issue