From 2436d8fe4ed50d9052c647bb9d070274ec168d28 Mon Sep 17 00:00:00 2001 From: Tilman Behrend Date: Mon, 22 Sep 2025 13:12:10 +0200 Subject: [PATCH] remove tailwind and ssl cert --- backend/vite.config.js | 12 ++++++------ backend/vite.default.config.js | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/backend/vite.config.js b/backend/vite.config.js index 72d763d..8299591 100644 --- a/backend/vite.config.js +++ b/backend/vite.config.js @@ -8,8 +8,8 @@ import tailwindcss from "@tailwindcss/vite"; import fs from "fs"; // Pfade zu deinen MAMP-Zertifikaten -const certPath = "/Applications/MAMP/Library/OpenSSL/certs/thats-me.test.crt"; -const keyPath = "/Applications/MAMP/Library/OpenSSL/certs/thats-me.test.key"; +// const certPath = "/Applications/MAMP/Library/OpenSSL/certs/thats-me.test.crt"; +// const keyPath = "/Applications/MAMP/Library/OpenSSL/certs/thats-me.test.key"; export default defineConfig({ plugins: [ @@ -20,10 +20,10 @@ export default defineConfig({ tailwindcss(), ], server: { - https: { - key: fs.readFileSync(keyPath), - cert: fs.readFileSync(certPath), - }, + // https: { + // key: fs.readFileSync(keyPath), + // cert: fs.readFileSync(certPath), + // }, cors: true, // Ergänze diese Zeile host: "192.168.1.8", port: 5173, diff --git a/backend/vite.default.config.js b/backend/vite.default.config.js index 49ba786..fcd7d08 100644 --- a/backend/vite.default.config.js +++ b/backend/vite.default.config.js @@ -1,6 +1,6 @@ import { defineConfig } from "vite"; import laravel from "laravel-vite-plugin"; -import tailwindcss from "@tailwindcss/vite"; +// import tailwindcss from "@tailwindcss/vite"; export default defineConfig({ plugins: [