From a1f067377fa4deb87648bbfc2d2e551d9557c90c Mon Sep 17 00:00:00 2001 From: gurshan <116788218+gursheyss@users.noreply.github.com> Date: Sun, 3 Dec 2023 23:49:34 -0800 Subject: [PATCH] add .gitignore modification to sveltekit doc (#3074) * add gitignore modification to sveltekit doc * Fix Typo --------- Co-authored-by: Lea Anthony --- website/docs/guides/sveltekit.mdx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/website/docs/guides/sveltekit.mdx b/website/docs/guides/sveltekit.mdx index 3f82eb813eb..e0357ca3c51 100644 --- a/website/docs/guides/sveltekit.mdx +++ b/website/docs/guides/sveltekit.mdx @@ -24,6 +24,9 @@ This guide will go into: ##### Modify main.go. - The first comment `//go:embed all:frontend/dist` needs to be changed to `//go:embed all:frontend/build` +##### Modify .gitignore +- The line `frontend/dist` needs to be replaced with `frontend/build` + ##### Install/remove dependencies using your favorite package manager. - Navigate into your "frontend" folder. - `npm i`