Home

Awesome

<h1 align="center">naviii</h1> <h4 align="center">一个简单优雅的导航页</h4> <p align="center"> <a href="https://start.uue.me">演示站</a> </p>

:sparkles: 特性

:gear: 配置

自定义搜索引擎关键字 src/assets/config/search.json

{
  "d": ["DuckDuckGo", "https://duckduckgo.com/?q="],
  "g": ["google", "https://www.google.com/search?q="],
  "b": ["Bing", "https://cn.bing.com/search?q="],
  "w": ["Wiki", "https://zh.wikipedia.org/wiki/"],
  "bd": ["BaiDu", "https://www.baidu.com/s?wd="],
  "gh": ["Github", "https://github.com/search?q="],
  "ex": ["v2ex", "https://www.google.com/search?q=site:v2ex.com "],
  "sof": ["StackOverflow", "https://stackoverflow.com/search?q="]
}

自定义书签 src/assets/config/bookmarks.json

interface BookMarks {
  title: string;
  brief?: string;
  link?: string;
  // URL
  favicon?: string;
  // Emoji icons
  menuIcon?: string;
  items?: BookMarks[];
}
[
  {
    "title": "Wiki",
    "link": "zh.wikipedia.org/wiki",
    "menuIcon": "⭐"
  },
  {
    "title": "社区",
    "items": [
      {
        "title": "Github",
        "link": "github.com/trending",
        "favicon": "https://joeschmoe.io/api/v1/random"
      }
    ]
  }
]

:hammer_and_wrench: 构建

# 安装
npm install
# 运行
npm run dev
# 编译
npm run build
# 代码风格
npm run lint

:cupid: 致谢

:scroll: 许可证

MIT