Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AlNahean committed May 27, 2022
1 parent c611acf commit 22ccc5f
Show file tree
Hide file tree
Showing 97 changed files with 18,903 additions and 201 deletions.
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
}
// "liveServer.settings.port": 5502
}
14 changes: 14 additions & 0 deletions craco.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// craco.config.js
const purgecss = require('@fullhuman/postcss-purgecss');

module.exports = {
style: {
postcss: {
plugins: [
purgecss({
content: ['./src/**/*.html', './src/**/*.tsx', './src/**/*.ts'],
}),
],
},
},
};
Loading

0 comments on commit 22ccc5f

Please sign in to comment.