Skip to content

Commit

Permalink
Init commit (whoops tis a big one)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan Cruz-Correa committed Jul 31, 2020
1 parent 995b573 commit 2e52c02
Show file tree
Hide file tree
Showing 29 changed files with 4,170 additions and 71 deletions.
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"emmet.preferences": {},
"emmet.includeLanguages": { "javascript": "javascriptreact" }
}
1 change: 1 addition & 0 deletions gatsby-browser.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import "./src/css/index.css"
31 changes: 23 additions & 8 deletions gatsby-config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.org/docs/gatsby-config/
*/
const resolveConfig = require("tailwindcss/resolveConfig");
const tailwindConfig = require("./tailwind.config.js");

const fullConfig = resolveConfig(tailwindConfig);
module.exports = {
/* Your site config here */
plugins: [],
}
siteMetadata: {
title: `Falls Church Dental`,
description: `Website for Falls Church Dental & Albert M. Boyce, DDS`,
author: `@jccdev45`,
},
plugins: [
`gatsby-plugin-transition-link`,
`gatsby-plugin-react-helmet`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-postcss`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/assets/images`,
},
},
],
};
Loading

0 comments on commit 2e52c02

Please sign in to comment.