Skip to content

Commit

Permalink
Fix asset file name (#2)
Browse files Browse the repository at this point in the history
Remove the additional `.css` output in the file name e.g. `File.css.css`
to `File.css`
  • Loading branch information
tfirdaus authored Sep 18, 2024
1 parent a2cc5a4 commit 14da9a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/kubrick/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default defineConfig({
return '_PreviewProvider.css';
}

return `${name}.[ext]`;
return `${name}`;
},
entryFileNames: '[name].js',
},
Expand Down

0 comments on commit 14da9a6

Please sign in to comment.