mirror of
https://github.com/kamranahmedse/driver.js.git
synced 2026-08-31 01:12:43 +08:00
fix: type error in the vite configuration file. (#416)
This commit is contained in:
+1
-1
@@ -25,7 +25,7 @@ module.exports = defineConfig({
|
||||
rollupOptions: {
|
||||
output: {
|
||||
assetFileNames: assetInfo => {
|
||||
return assetInfo.name === "style.css" ? `driver.css` : assetInfo.name;
|
||||
return assetInfo.name === "style.css" ? `driver.css` : assetInfo.name as string;
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user