From 48e44e25aa942f72deb44c26b169e016c44d38a5 Mon Sep 17 00:00:00 2001 From: Nikita Karamov Date: Wed, 25 Jan 2023 18:30:39 +0100 Subject: [PATCH] Fix code style --- index.html | 1 - vite.config.js | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 691806a..6bf3c70 100644 --- a/index.html +++ b/index.html @@ -21,7 +21,6 @@ font-weight: 600; } - diff --git a/vite.config.js b/vite.config.js index 07d8f05..ebee818 100644 --- a/vite.config.js +++ b/vite.config.js @@ -9,7 +9,7 @@ export default defineConfig({ name: "Shareon", formats: ["es", "umd", "iife"], // Workaround to keep the old file names - fileName: (format, _) => `shareon.${format}.js`, + fileName: (format) => `shareon.${format}.js`, }, rollupOptions: { output: { @@ -24,6 +24,6 @@ export default defineConfig({ }, }, css: { - devSourcemap: true - } + devSourcemap: true, + }, });