From 18022a2ad9d9c81259bbd89eaec6393f4e19ecfa Mon Sep 17 00:00:00 2001 From: Jared Jolton <2PacIsAlive@users.noreply.github.com> Date: Sat, 10 Feb 2024 11:41:08 -0700 Subject: [PATCH] fix(docs): add line number highlighting for "Update vite.config.ts" instructions This block in the Vite docs was missing the highlighting that calls out what the changes should be at this step. --- apps/www/src/content/docs/installation/vite.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/www/src/content/docs/installation/vite.md b/apps/www/src/content/docs/installation/vite.md index 314f0790..7f6fc3ca 100644 --- a/apps/www/src/content/docs/installation/vite.md +++ b/apps/www/src/content/docs/installation/vite.md @@ -97,7 +97,7 @@ Add the code below to the vite.config.ts so your app can resolve paths without e npm i -D @types/node ``` -```typescript +```typescript {2,7-11} import path from "path" import vue from "@vitejs/plugin-vue" import { defineConfig } from "vite"