From 7551f81e2a3c9041ea695a67ed2a72cdac08b856 Mon Sep 17 00:00:00 2001 From: Natxo <1172351+natxocc@users.noreply.github.com> Date: Sun, 15 Mar 2026 23:54:54 +0100 Subject: [PATCH] Fix import path for sigproRouter --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index e4aa12c..8203774 100644 --- a/index.js +++ b/index.js @@ -5,7 +5,7 @@ export * from './sigpro.js'; // 2. Import and re-export the Vite Router Plugin // This allows users to import { sigproRouter } directly from the package -import sigproRouter from './vite-plugin.sigpro.js'; +import sigproRouter from './vite-plugin-sigpro.js'; export { sigproRouter }; // 3. Default export for the global namespace (optional)