Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/shipengqi/frontend-learn

:books: Frontend learning ...
https://github.com/shipengqi/frontend-learn

angular css css3 html html5 javascript less node nodejs typescript vite vue webpack

Last synced: 5 days ago
JSON representation

:books: Frontend learning ...

Awesome Lists containing this project

README

        

# frontend-learn

Frontend learning ...

## Usage

Initialize project as a Hugo Module using the `hugo mod init` command:

```sh
hugo mod init github.com/shipengqi/frontend-learn
```

Adding the [Hextra](https://github.com/imfing/hextra) theme:

```yaml
baseURL: "https://shipengqi.github.io/frontend-learn"
title: "Frontend Learning"

module:
imports:
- path: github.com/imfing/hextra
```

Start server:

```sh
hugo server -D
```

Manually deploy:

```sh
./deploy.sh
```

> Any changes in the `content` directory will automatically trigger a deployment.

## Update Theme

To update all Hugo modules in your project to their latest versions, run the following command:

```
hugo mod get -u
```

To update Hextra to the latest released version, run the following command:

```
hugo mod get -u github.com/imfing/hextra
```