From f6ee4e800526969fda12daec1075676728f3c834 Mon Sep 17 00:00:00 2001 From: Sven Kirschbaum Date: Sun, 23 Jun 2024 06:38:49 +0200 Subject: [PATCH] fix: Fix example project base path --- example/vite.config.js | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/example/vite.config.js b/example/vite.config.js index 24e428d..4e2ebe7 100644 --- a/example/vite.config.js +++ b/example/vite.config.js @@ -4,6 +4,7 @@ import react from "@vitejs/plugin-react"; // https://vitejs.dev/config/ export default defineConfig({ plugins: [react()], + base: "./", define: { global: "window", }, diff --git a/package.json b/package.json index 372dc41..bc886a3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-stomp-hooks", - "version": "3.0.0-alpha.1", + "version": "3.0.0-alpha.2", "publishConfig": { "tag": "next" },