ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    next.js npm run start 使用非 3000 端口

    Jun 22, 20224 min read

    next.js 更改端口的配置方法

      "scripts": {
        "dev": "next dev",
        "build": "next build",
        "start": "next start -p 8000",
        "test": "sh dev.sh "
      },
    

    相关文章

    解决报错:Something went wrong. If this issue persists please contact us through our help center at help.openai.com.

    建议您联系OpenAI的Help Center客服以获取更多解决方法。

    如何给localStorage扩容?

    为了扩容localStorage,可以通过分割数据到多个localStorage、使用IndexedDB、压缩数据和定期清理无用数据等方法来增加存储空间。

    Spring Cloud nacos的几个概念

    Spring Cloud nacos中的命名空间用于环境隔离,配置分组用于服务归类,配置集对应单个配置文件。

    Docker redis 测试环境

    在测试环境中使用Docker运行一个名为redis-test的Redis容器,映射端口6379。

    Go的文件监控的实现

    Go文件监控实现中,需手动添加子目录监控,错误和事件通道需在单独goroutine中处理,OS X上Spotlight索引可能导致重复事件,监控文件数量受操作系统限制,NFS和FUSE文件系统不支持通知。