removed prelineui 🤮

This commit is contained in:
slawk0
2024-11-15 22:58:33 +01:00
parent c1cd395a5e
commit 18a3876153
4 changed files with 2 additions and 24 deletions

View File

@@ -19,6 +19,5 @@
<body>
<div id="root"></div>
<script type="module" src="./src/main.tsx"></script>
<script src="./node_modules/preline/dist/preline.js"></script>
</body>
</html>

View File

@@ -15,7 +15,6 @@
"@types/socket.io-client": "^1.4.36",
"axios": "^1.7.7",
"js-cookie": "^3.0.5",
"preline": "^2.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
@@ -3594,15 +3593,6 @@
"integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==",
"license": "MIT"
},
"node_modules/preline": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/preline/-/preline-2.5.1.tgz",
"integrity": "sha512-fEXOsz0xLfTm5sJmNanourrMjwjcgGtaVNg8Pt6GzUbZ/oXHIdcR94LBdeE0Ea0pBPFOOHzEL5LQwSbAvCJEfw==",
"license": "Licensed under MIT and Preline UI Fair Use License",
"dependencies": {
"@popperjs/core": "^2.11.2"
}
},
"node_modules/prelude-ls": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",

View File

@@ -10,14 +10,11 @@
"preview": "vite preview"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@preline/dropdown": "^2.5.0",
"@tailwindcss/forms": "^0.5.9",
"@types/js-cookie": "^3.0.6",
"@types/socket.io-client": "^1.4.36",
"axios": "^1.7.7",
"js-cookie": "^3.0.5",
"preline": "^2.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",

View File

@@ -2,20 +2,12 @@ import daisyui from 'daisyui';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{js,ts,jsx,tsx}',
'node_modules/preline/dist/*.js',
],
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {},
},
daisyui: {
themes: [],
},
plugins: [
require('@tailwindcss/forms'),
require('preline/plugin'),
require('daisyui'),
],
plugins: [require('@tailwindcss/forms'), require('daisyui')],
};