Skip to content

Commit

Permalink
fix vite plugin names
Browse files Browse the repository at this point in the history
  • Loading branch information
dai-shi committed Jul 15, 2023
1 parent 407d1d1 commit 624dd11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/vite-plugin/rsc-analyze-plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function rscAnalyzePlugin(
serverEntryCallback: (id: string) => void
): Plugin {
return {
name: "rsc-bundle-plugin",
name: "rsc-analyze-plugin",
transform(code, id) {
const ext = path.extname(id);
if ([".ts", ".tsx", ".js", ".jsx"].includes(ext)) {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/vite-plugin/rsc-reload-plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export function rscReloadPlugin(fn: (type: "full-reload") => void): Plugin {
return false;
};
return {
name: "reload-plugin",
name: "rsc-reload-plugin",
configResolved(config) {
if (config.mode === "development") {
enabled = true;
Expand Down

1 comment on commit 624dd11

@vercel
Copy link

@vercel vercel bot commented on 624dd11 Jul 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

waku – ./

waku.vercel.app
waku.gg
www.waku.gg
waku-daishi.vercel.app
waku-git-main-daishi.vercel.app

Please sign in to comment.