nextjs-使用NODE_ENV = development

时间:2019-08-08 08:09:10

标签: reactjs next

我想将我的nextjs项目构建为开发模式。

我尽力了

package.json

{
  ...
  "scripts": {
    "dev": "next",
    "build:dev": "set NODE_ENV=development & next build",
    "build:prod": "set NODE_ENV=production & next build",
    "start:dev": "set NODE_ENV=development & next start",
    "start:prod": "set NODE_ENV=production & next start"
  }
  ...
}

next.config.js

module.exports = withSass({
  env: {
    baseUrl: process.env.NODE_ENV === "development" ? "devServerURL": "prodServerURL"
  }
});

但是我达不到我想要的。

所以,我尝试了一些更改。

package.json

  "scripts": {
    "dev": "next",
    "build": "next build",
    "start:dev": "set NODE_ENV=development & next start",
    "start:prod": "set NODE_ENV=production & next start"
  }

但是它也不起作用。

如何使用开发模式构建next

谢谢。

编辑

我的操作系统是Windows 10。

0 个答案:

没有答案