ByteNote LogoByteNote

Navigation

  • Blog
  • 工具

    © 2025 ByteNote. All rights reserved.

    解决 Building for iOS Simulator, but linking in object file built for iOS

    Oct 26, 20222 min read

    At the end of your Podfile add,

    post_install do |installer|
      installer.pods_project.targets.each do |target|
        target.build_configurations.each do |config|
          config.build_settings['ONLY_ACTIVE_ARCH'] = 'YES'
        end
      end
    end
    

    相关文章

    解决 Eslint报Parsing error x-invalid-end-tag

    该配置通过设置"vue/no-parsing-error"规则中的"x-invalid-end-tag"为false来解决Eslint报的"Parsing error x-invalid-end-tag"错误。

    Storybook 组织项目的目录结构

    使用Storybook组织项目时,采用的目录结构包括`src`下的`components`存放组件及其JavaScript、stories和CSS文件,以及`stories`目录统一管理故事文件,确保项目组件和故事的清晰组织与管理。

    在Go中,用 { } 包围代码块就形成了块语句

    在Go语言中,使用花括号 { } 可以创建块语句、初始化变量、返回多个值、初始化结构体以及扩展switch语句等多种编程结构。

    Github AccessToken获取方式

    获取Github AccessToken的方式是通过点击“Developer settings”进行操作。

    plasmo build --source-maps --bundle-buddy 什么是Bundle Buddy

    Bundle Buddy是一个命令行工具和Web界面,用于优化和调试JavaScript和CSS打包及加载过程,通过分析包内容、识别冗余代码和重复依赖,并提供可视化视图来提升性能。