Skip to content

Commit

Permalink
Add evidence files to git and set up frontend for bread
Browse files Browse the repository at this point in the history
docker fun and frontend fun

finally got there 🍾

Add 🍞 to readme

Commit config files

Add other files

Change tab title

more 🍞
  • Loading branch information
zachnorman02 committed Aug 10, 2023
1 parent f4df28c commit cbda89c
Show file tree
Hide file tree
Showing 38 changed files with 18,809 additions and 61 deletions.
11 changes: 11 additions & 0 deletions .evidence/template/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@

# Evidence Template Project

Thank you for checking out Evidence.

## Learning More

- [Docs](https://docs.evidence.dev/)
- [Project Home Page](https://www.evidence.dev)
- [Github](https://github.com/evidence-dev/evidence)

15 changes: 15 additions & 0 deletions .evidence/template/postcss.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
const tailwindcss = require('tailwindcss');
const nesting = require('tailwindcss/nesting');
const autoprefixer = require('autoprefixer');

const config = {
plugins: [
nesting(),
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
tailwindcss(),
//But others, like autoprefixer, need to run after,
autoprefixer
]
};

module.exports = config;
Loading

0 comments on commit cbda89c

Please sign in to comment.