From e21d13ab3f2a8d596819c1cf26d304087891a708 Mon Sep 17 00:00:00 2001 From: Dorian Date: Wed, 4 Mar 2026 21:04:37 +0000 Subject: [PATCH] =?UTF-8?q?revert(app):=20remove=20basicSsl=20=E2=80=94=20?= =?UTF-8?q?breaks=20HTTP=20dev=20access=20on=20LAN?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The always-on HTTPS plugin prevented HTTP access at the LAN IP. PWA install requires HTTPS but that should be handled at deploy time, not in dev config. Co-Authored-By: Claude Opus 4.6 --- packages/app/vite.config.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/app/vite.config.ts b/packages/app/vite.config.ts index 072e4f98..c4052b83 100644 --- a/packages/app/vite.config.ts +++ b/packages/app/vite.config.ts @@ -1,7 +1,6 @@ import { defineConfig } from 'vite' import vue from '@vitejs/plugin-vue' import tailwindcss from '@tailwindcss/vite' -import basicSsl from '@vitejs/plugin-basic-ssl' import { VitePWA } from 'vite-plugin-pwa' import { resolve } from 'path' import { tmdbPlugin } from './vite-tmdb' @@ -16,7 +15,6 @@ export default defineConfig({ plugins: [ vue(), tailwindcss(), - basicSsl(), tmdbPlugin(), devChatsPlugin(), musicSearchPlugin(),