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, + }, });