2022-11-22 20:38:57 +08:00
2022-02-10 02:04:57 +08:00
2022-02-10 02:04:57 +08:00
2022-02-10 02:04:57 +08:00
2022-02-10 02:04:57 +08:00
2022-02-10 02:04:57 +08:00
2022-02-10 02:04:57 +08:00
2022-02-10 02:04:57 +08:00
2022-02-10 02:04:57 +08:00
2022-02-10 02:04:57 +08:00
2022-02-10 02:04:57 +08:00
2022-02-10 02:04:57 +08:00
2022-02-10 02:04:57 +08:00
2022-02-08 03:53:20 +08:00
2022-02-08 03:53:20 +08:00
2022-02-08 03:53:20 +08:00
2022-03-03 23:04:58 +08:00

Static Assets for Chirpy Jekyll Theme

Introduction

Static assets (libraries/plugins/web-fonts) required by the Chirpy based website to run. It provides the opportunity to choose self-host assets in production or development mode.

Usage

  • If you want to use these assets only in local development:

    Go to the root of your site and clone the assets as follows:

    $ git submodule init
    $ git submodule update
    

    And then set your site configuration options:

    # _config.yml
    assets:
      self_host:
        enabled: true
        env: development
    
  • If you expect the assets to be self-hosted when your website is published:

    Keep the _config.yml options as follows:

    # _config.yml
    assets:
      self_host:
        enabled: true
    

    And then update the GitHub Actions workflow in .github/workflows/pages-deploy.yml:

    steps:
      - name: Checkout
        uses: actions/checkout@v2
        with:
    +     submodules: true
    
Description
No description provided
Readme MIT 29 MiB
Languages
JavaScript 100%