-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add evidence files to git and set up frontend for bread
docker fun and frontend fun finally got there πΎ Add π to readme Commit config files Add other files Change tab title more π
- Loading branch information
1 parent
f4df28c
commit cbda89c
Showing
38 changed files
with
18,809 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
Oops, something went wrong.