From 9b6a86fe0c599f34a9cfb8a5da63d7d52655b745 Mon Sep 17 00:00:00 2001 From: Pascal Martineau Date: Tue, 13 Jan 2026 11:02:47 -0500 Subject: [PATCH] feat: Optional SSL for dev server --- wp-content/themes/moonshine/nuxt.config.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/wp-content/themes/moonshine/nuxt.config.ts b/wp-content/themes/moonshine/nuxt.config.ts index b8cc42b..2724474 100644 --- a/wp-content/themes/moonshine/nuxt.config.ts +++ b/wp-content/themes/moonshine/nuxt.config.ts @@ -20,6 +20,13 @@ export default defineNuxtConfig({ colorMode: false, }, + devServer: { + https: { + key: process.env.LOCAL_HTTPS_KEY, + cert: process.env.LOCAL_HTTPS_CERT, + }, + }, + compatibilityDate: "2026-01-01", eslint: {