no more tailwind

This commit is contained in:
hexahigh 2023-09-27 16:28:42 +02:00
parent 024d9da406
commit 2cb023fb52
5 changed files with 2208 additions and 20 deletions

View File

@ -13,12 +13,10 @@
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.25.0",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.30",
"svelte": "^4.2.1",
"svelte-meta-tags": "^3.0.4",
"svelte-pocketbase": "^0.0.4",
"svelte-sitemap": "^2.6.0",
"tailwindcss": "^3.3.3",
"vite": "^4.4.9"
},
"type": "module",

2207
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +0,0 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}

View File

@ -1,12 +1,10 @@
import adapter from '@sveltejs/adapter-cloudflare';
import { vitePreprocess } from '@sveltejs/kit/vite';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter()
},
preprocess: vitePreprocess()
}
};
export default config;

View File

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