Fix code style

pull/46/head
Nikita Karamov 2023-01-25 18:30:39 +01:00
parent 38155afa8a
commit 48e44e25aa
No known key found for this signature in database
GPG Key ID: 41D6F71EE78E77CD
2 changed files with 3 additions and 4 deletions

View File

@ -21,7 +21,6 @@
font-weight: 600; font-weight: 600;
} }
</style> </style>
</head> </head>
<body> <body>

View File

@ -9,7 +9,7 @@ export default defineConfig({
name: "Shareon", name: "Shareon",
formats: ["es", "umd", "iife"], formats: ["es", "umd", "iife"],
// Workaround to keep the old file names // Workaround to keep the old file names
fileName: (format, _) => `shareon.${format}.js`, fileName: (format) => `shareon.${format}.js`,
}, },
rollupOptions: { rollupOptions: {
output: { output: {
@ -24,6 +24,6 @@ export default defineConfig({
}, },
}, },
css: { css: {
devSourcemap: true devSourcemap: true,
} },
}); });