diff --git a/_redirects b/_redirects deleted file mode 100644 index f824337..0000000 --- a/_redirects +++ /dev/null @@ -1 +0,0 @@ -/* /index.html 200 \ No newline at end of file diff --git a/bun.lockb b/bun.lockb index 0a40893..bc312a3 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/netlify.toml b/netlify.toml deleted file mode 100644 index fd0accf..0000000 --- a/netlify.toml +++ /dev/null @@ -1,5 +0,0 @@ -[[redirects]] - from = "/*" - to = "/index.html" - status = 200 - force = false \ No newline at end of file diff --git a/package.json b/package.json index 3535dc5..2c003ba 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "scripts": { "start": "vite", "dev": "vite", - "build": "vite build && cp netlify.toml dist", + "build": "vite build", "serve": "vite preview" }, "license": "MIT", @@ -13,8 +13,6 @@ "autoprefixer": "^10.4.16", "postcss": "^8.4.31", "prettier": "^2.8.8", - "prettier-plugin-tailwindcss": "^0.2.8", - "tailwindcss": "^3.3.3", "typescript": "^4.9.5", "vite": "^4.4.9", "vite-plugin-solid": "^2.7.0" diff --git a/postcss.config.js b/postcss.config.js index a03e681..336880c 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,6 +1,5 @@ module.exports = { plugins: { - tailwindcss: {}, autoprefixer: {}, }, } diff --git a/tailwind.config.js b/tailwind.config.js deleted file mode 100644 index 36c91b4..0000000 --- a/tailwind.config.js +++ /dev/null @@ -1,13 +0,0 @@ -/** @type {import('tailwindcss').Config} */ -module.exports = { - mode: 'jit', - content: [ - './src/**/*.{js,jsx,ts,tsx}', - './src/Challenges/**/*.{js,jsx,ts,tsx}', - './dist/index.html', - ], - theme: { - extend: {}, - }, - plugins: [], -};