Skip to content

Commit

Permalink
Removing many unused css related code
Browse files Browse the repository at this point in the history
  • Loading branch information
guilhermeavanci committed Dec 22, 2023
1 parent 9e6c572 commit d451a4e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 109 deletions.
91 changes: 0 additions & 91 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 3 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,10 @@
"version": "0.1.0",
"private": true,
"scripts": {
"deploy": "run-s build gh-pages:deploy",
"gh-pages:deploy": "gh-pages -d dist",
"dev": "run-s tailwind webpack:dev",
"prod": "run-s build start",
"build": "run-s tailwind webpack:build",
"dev": "webpack serve --mode=development",
"build": "webpack --mode=production",
"start": "serve dist",
"webpack:dev": "webpack serve --mode=development",
"webpack:build": "webpack --mode=production",
"tailwind": "tailwindcss build src/app.css -o public/app.css"
"prod": "run-s build start"
},
"dependencies": {
"react": "18.2.0",
Expand All @@ -35,7 +30,6 @@
"babel-loader": "^9.1.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"daisyui": "^4.4.20",
"eslint": "^8.56.0",
Expand Down
2 changes: 0 additions & 2 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=devide-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" conent="ie=edge" />
<!-- <link href="app.css" rel="stylesheet"> -->
<title></title>
</head>
<body>
<div id="root"></div>
<!-- <script src="app.js"></script> -->
</body>
</html>
7 changes: 0 additions & 7 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
let path = require('path')
// eslint-disable-next-line @typescript-eslint/no-var-requires, no-undef
let HtmlWebpackPlugin = require('html-webpack-plugin')
// eslint-disable-next-line @typescript-eslint/no-var-requires, no-undef
let CopyPlugin = require('copy-webpack-plugin')

// eslint-disable-next-line no-undef
module.exports = {
Expand Down Expand Up @@ -38,10 +36,5 @@ module.exports = {
new HtmlWebpackPlugin({
template: 'src/index.html'
})
// new CopyPlugin({
// patterns: [
// { from: 'public', to: '' }
// ]
// })
]
}

0 comments on commit d451a4e

Please sign in to comment.