removed all unused libs,some cleanup
This commit is contained in:
parent
66969b49e7
commit
82e0b21c06
@ -1,6 +1,6 @@
|
||||
# TailwindElements-React-Starter
|
||||
|
||||
- [Tailwind Elements](https://tw-elements.com/) - main styling
|
||||
- __nothing__ - main styling
|
||||
- [react-icons](https://react-icons.github.io/react-icons/) - big icon library
|
||||
- [recharts](https://echarts.apache.org/) - charts library
|
||||
- [wouter](https://github.com/molefrog/wouter) - router library
|
||||
|
@ -37,6 +37,7 @@
|
||||
"eslint-plugin-react-hooks": "^4.6.0",
|
||||
"eslint-plugin-react-refresh": "^0.4.4",
|
||||
"postcss": "^8.4.31",
|
||||
"postcss-simple-vars": "^7.0.1",
|
||||
"prettier": "^3.0.3",
|
||||
"tailwindcss": "^3.3.5",
|
||||
"typescript": "^5.2.2",
|
||||
|
2625
pnpm-lock.yaml
generated
2625
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -3,10 +3,7 @@ import { main } from "../configure";
|
||||
function App() {
|
||||
return (
|
||||
<>
|
||||
<p>Select mode:</p>
|
||||
<p>
|
||||
{main.program_name} v{main.program_version}
|
||||
</p>
|
||||
{main.program_name} v{main.program_version}
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc magna massa,
|
||||
ornare quis interdum a, cursus in quam. Quisque risus libero, cursus eget
|
||||
eros vitae, aliquam placerat velit. Vivamus luctus eros id sagittis luctus.
|
||||
|
@ -1,15 +1,7 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
"./src/**/*.{js,ts,jsx,tsx}",
|
||||
"./index.html",
|
||||
"./node_modules/tw-elements/dist/js/**/*.js",
|
||||
],
|
||||
content: ["./src/**/*.{js,ts,jsx,tsx}", "./index.html"],
|
||||
// safelist is used to allow classes to not be purged by tailwind
|
||||
safelist: ["alert-info", "alert-success", "alert-warning", "alert-error"],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [require("tw-elements/dist/plugin.cjs")],
|
||||
darkMode: "class",
|
||||
plugins: [require("@tailwindcss/typography")],
|
||||
};
|
||||
|
@ -31,9 +31,6 @@
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"types": [
|
||||
"@types/node"
|
||||
]
|
||||
},
|
||||
"include": [
|
||||
"src/**/*"
|
||||
|
Loading…
x
Reference in New Issue
Block a user