From d8e27aa5f907c5d6026444ff10603a4688c39807 Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Thu, 5 Oct 2023 21:12:01 +1100 Subject: [PATCH] Fix svelte template --- v3/internal/templates/svelte-ts/frontend/svelte.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v3/internal/templates/svelte-ts/frontend/svelte.config.js b/v3/internal/templates/svelte-ts/frontend/svelte.config.js index 5eca8244..b0683fd2 100644 --- a/v3/internal/templates/svelte-ts/frontend/svelte.config.js +++ b/v3/internal/templates/svelte-ts/frontend/svelte.config.js @@ -1,7 +1,7 @@ -import { wailsPreprocess } from '@sveltejs/vite-plugin-svelte' +import { vitePreprocess } from '@sveltejs/vite-plugin-svelte' export default { // Consult https://svelte.dev/docs#compile-time-svelte-preprocess // for more information about preprocessors - preprocess: wailsPreprocess(), + preprocess: vitePreprocess(), }