Skip to content

Commit

Permalink
docs(pages/v2): fix typo in serverBuildTarget section (#5973)
Browse files Browse the repository at this point in the history
  • Loading branch information
houmark authored Apr 1, 2023
1 parent 18b1fd6 commit bff6b5d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@
- Holben888
- hollandThomas
- Hopsken
- houmark
- humphd
- hzhu
- IAmLuisJ
Expand Down
8 changes: 4 additions & 4 deletions docs/pages/v2.md
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ module.exports = {
module.exports = {
publicPath: "/build/",
serverBuildPath: "functions/[[path]].js",
serverConditions: "worker",
serverConditions: ["worker"],
serverMainFields: ["browser", "module", "main"],
serverModuleFormat: "esm",
serverPlatform: "neutral",
Expand All @@ -621,7 +621,7 @@ module.exports = {
module.exports = {
publicPath: "/build/",
serverBuildPath: "build/index.js",
serverConditions: "worker",
serverConditions: ["worker"],
serverMainFields: ["browser", "module", "main"],
serverModuleFormat: "esm",
serverPlatform: "neutral",
Expand All @@ -637,7 +637,7 @@ module.exports = {
module.exports = {
publicPath: "/build/",
serverBuildPath: "build/index.js",
serverConditions: "deno, worker",
serverConditions: ["deno", "worker"],
serverMainFields: ["module", "main"],
serverModuleFormat: "esm",
serverPlatform: "neutral",
Expand All @@ -653,7 +653,7 @@ module.exports = {
module.exports = {
publicPath: "/build/",
serverBuildPath: ".netlify/functions-internal/server.js",
serverConditions: "deno, worker",
serverConditions: ["deno", "worker"],
serverMainFields: ["main", "module"],
serverModuleFormat: "cjs",
serverPlatform: "node",
Expand Down

0 comments on commit bff6b5d

Please sign in to comment.