1
0
Fork 0

Remove tailwind and its dependencys

This commit is contained in:
Leon Grünewald 2024-11-19 23:56:17 +01:00
parent 85509353b4
commit 697898b6a4
4 changed files with 0 additions and 888 deletions

View file

@ -22,13 +22,9 @@
"@sveltejs/kit": "^2.8.1",
"@sveltejs/vite-plugin-svelte": "^4.0.1",
"@tauri-apps/cli": "^2.1.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"postcss-load-config": "^5.1.0",
"svelte": "^5.2.4",
"svelte-check": "^4.0.9",
"svelte-fa": "^4.0.3",
"tailwindcss": "^3.4.15",
"typescript": "^5.6.3",
"vite": "^5.4.11"
}

File diff suppressed because it is too large Load diff

View file

@ -1,13 +0,0 @@
const tailwindcss = require("tailwindcss");
const autoprefixer = require("autoprefixer");
const config = {
plugins: [
//Some plugins, like tailwindcss/nesting, need to run before Tailwind,
tailwindcss(),
//But others, like autoprefixer, need to run after,
autoprefixer,
],
};
module.exports = config;

View file

@ -1,9 +0,0 @@
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
safelist: ['accent-yellow-500', 'accent-yellow-50'],
theme: {
extend: {}
},
plugins: [],
};