File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Vite 6 以前は `client` と `ssr` という 2 つの環境しか利用でき
1818
1919## 移行ガイド
2020
21- 既存のプラグインを素早くマイグレーションするには、` resolveId ` 、` load ` 、` transform ` フックの ` options.ssr ` 引数を ` this.environment.name !== 'client ' ` に置き換えてください:
21+ 既存のプラグインを素早くマイグレーションするには、` resolveId ` 、` load ` 、` transform ` フックの ` options.ssr ` 引数を ` this.environment.config.consumer === 'server ' ` に置き換えてください:
2222
2323``` ts
2424import { Plugin } from ' vite'
@@ -28,7 +28,7 @@ export function myPlugin(): Plugin {
2828 name: ' my-plugin' ,
2929 resolveId(id , importer , options ) {
3030 const isSSR = options .ssr // [!code --]
31- const isSSR = this .environment .name !== ' client ' // [!code ++]
31+ const isSSR = this .environment .config . consumer === ' server ' // [!code ++]
3232
3333 if (isSSR ) {
3434 // SSR 固有のロジック
You can’t perform that action at this time.
0 commit comments