加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
nuxt.config.js 858 Bytes
一键复制 编辑 原始数据 按行查看 历史
Renovamen 提交于 2021-03-13 14:53 . style: prettier code
import i18n from "./docs/i18n";
export default {
target: "static",
srcDir: "./docs/",
generate: {
dir: "./docs/dist/"
},
head: {
title: "Oh, Vue Icons!",
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
{
hid: "description",
name: "description",
content:
"A Vue component for including inline SVG icons from different popular iconpacks easily."
}
],
link: [{ rel: "icon", type: "image/x-icon", href: "/favicon.svg" }]
},
css: [
"./assets/font.css",
"./assets/code-light.css",
"./assets/code-dark.css"
],
components: true, // auto import components
modules: ["@nuxt/content", ["nuxt-i18n", i18n]],
buildModules: ["@nuxtjs/tailwindcss", "vue-swatches/nuxt"],
plugins: ["~/plugins/icons.js"]
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化