gpt4 book ai didi

webpack - Nextjs 在使用 "next"运行时不记录 console.log 或 console.error

转载 作者:行者123 更新时间:2023-12-04 11:45:10 26 4
gpt4 key购买 nike

所以我在我的 server.js 中有这个日志文件:

  console.info("LOOGGGGGSSSS")
console.warn("LOOGGGGGSSSS")
console.log("LOOGGGGGSSSS")
console.error("LOOGGGGGSSSS")

我的 package.json有脚本:
  "scripts": {
"dev": "next",
"start": "next start"
}

当我使用 npm run start 运行服务器时,一切正常,我可以看到日志,但使用 npm run devconsole.log()console.error()完全有效。

我尝试使用选项 quiet true 和 false 但仍然无法正常工作:
const nextJsApp = next({dev, quiet: false}); // no logs in terminal


const nextJsApp = next({dev, quiet: true}); // still no logs in terminal

我的 next.config.js
require("dotenv").config();
const withCSS = require('@zeit/next-css');
const webpack = require('webpack');

const apiKey = JSON.stringify(process.env.SHOPIFY_API_KEY);

module.exports = withCSS({
webpack: (config) => {
const env = { SHOPIFY_API_KEY: apiKey };
config.plugins.push(new webpack.DefinePlugin(env));
return config;
},
});

最佳答案

转到您运行的终端 npm run dev .
您应该能够在那里看到您的控制台日志。

关于webpack - Nextjs 在使用 "next"运行时不记录 console.log 或 console.error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61240340/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com