From b9ccb1e0876d305415f243354782a7b668d0ce01 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Thu, 11 Apr 2024 10:12:44 +0000 Subject: [PATCH] refactor: replace template strings with regular string literals Template literals are useful when you need: 1. [Interpolated strings](https://en.wikipedia.org/wiki/String_interpolation). --- vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite.config.ts b/vite.config.ts index 5c33bf4..5f1cb34 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -13,7 +13,7 @@ export default defineConfig({ css: { preprocessorOptions: { less: { - additionalData: `@import url('./src/assets/global');` + additionalData: "@import url('./src/assets/global');" } } },