博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Gatsby] Install Gatsby and Scaffold a Blog
阅读量:4984 次
发布时间:2019-06-12

本文共 706 字,大约阅读时间需要 2 分钟。

In this lesson, you’ll install Gatsby and the plugins that give the default starter the ability to transform Markdown into HTML.

 

Install:

npm i -g gatsby-cli

 

Create a project:

gatsby new my-blog

 

cd to the project and install some dependenicy.

yarn add gatsby-source-filesystem gatsby-transformer-remark

 

Add libs to the config file:

module.exports = {  siteMetadata: {    title: `Gatsby Default Starter`,  },  plugins: [    `gatsby-plugin-react-helmet`,    `gatsby-transformer-remark`,    {      resolve: `gatsby-source-filesystem`,      options: {        name: `src`,        path: `${__dirname}/src`      }    }  ],}

 

Run:

gatsby serve

or

gatsby develop

 

转载于:https://www.cnblogs.com/Answer1215/p/8447242.html

你可能感兴趣的文章
Hadoop HDFS学习总结
查看>>
shell脚本 监控ps 不存在则重启
查看>>
C#wxpay和alipay
查看>>
Combination Sum
查看>>
WCF开发框架形成之旅---结合代码生成工具实现快速开发
查看>>
Spring事务管理
查看>>
flask 中orm关系映射 sqlalchemy的查询
查看>>
从《雪白血红》说起(1)
查看>>
git基本操作
查看>>
C#的split分割的举例
查看>>
CentOS 7.0系统安装配置LAMP服务器(Apache+PHP+MariaDB)
查看>>
python cookbook 学习笔记 -- 1.6 合并字符串
查看>>
51nod1175区间第k大(小)数(主席树模板)
查看>>
Exp1 PC平台逆向破解 20154324刘康权
查看>>
JS||JQUERY常用语法
查看>>
talend hive数据导入到mysql中
查看>>
[bbk5222] 第111集 -第14章 - 数据库空间管理 00
查看>>
ORA-01093: ALTER DATABASE CLOSE only permitted with no sessions connected
查看>>
python3 全栈开发 -- 面向对象 类的组合和封装
查看>>
Ember.js 1.0 RC 发布,JavaScript 框架
查看>>