diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index ccded5d..af28841 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -32,7 +32,7 @@ jobs: - name: build run: yarn build env: - BASE_PATH: /blog/ + BASE_PATH: /blog - name: upload artifact uses: actions/upload-pages-artifact@v3.0.1 diff --git a/src/BlogIndex.tsx b/src/BlogIndex.tsx index 2c2faa0..90ba70c 100644 --- a/src/BlogIndex.tsx +++ b/src/BlogIndex.tsx @@ -1,10 +1,9 @@ -import { JSX, Component } from "solid-js"; import { css } from "@linaria/core"; -import cn from "classnames"; import { Title } from "@solidjs/meta"; -import { For, NoHydration } from "solid-js/web"; -import Text from "~/atoms/Text.md"; -import Counter from "~/components/Counter"; +import cn from "classnames"; +import { Component, JSX } from "solid-js"; +import { For } from "solid-js/web"; +import { config } from "~/config"; import { getArticles } from "~/ssg/getArticles"; const list = getArticles(); @@ -16,12 +15,12 @@ interface Props { const BlogIndex: Component = (props) => { return (
- Hello World + Blog of a programming rabbit