NextJs (11)部屬 Next 專案

部署

純 Node.js 環境輸出

1️⃣ 先設定 next.config.js

1
2
3
module.exports = {
output: "standalone",
};

2️⃣ 重新編譯

1
next build

這會生成 .next/standalone/ 目錄,內含 獨立的 Node.js 伺服器。

3️⃣ 用 node 直接運行

進入 .next 資料夾

1
node ./standalone/server.js