Skip to content

Commit cb4093a

Browse files
authored
docs: unify __dirname usage (#1807)
resolve #1806 vitejs/vite@4f5845a の反映です。
1 parent 312b41f commit cb4093a

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

guide/api-environment-frameworks.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,12 @@ if (isRunnableDevEnvironment(server.environments.ssr)) {
4646
[SSR セットアップガイド](/guide/ssr#setting-up-the-dev-server)で説明されているように、ミドルウェアモードに設定された Vite サーバーがあるとして、Environment API を使って SSR ミドルウェアを実装してみましょう。エラー処理は省略します。
4747

4848
```js
49+
import fs from 'node:fs'
50+
import path from 'node:path'
51+
import { fileURLToPath } from 'node:url'
4952
import { createServer } from 'vite'
5053

54+
const __dirname = path.dirname(fileURLToPath(import.meta.url))
5155
const server = await createServer({
5256
server: { middlewareMode: true },
5357
appType: 'custom',

guide/build.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,12 @@ export default defineConfig({
106106
ビルド時には、エントリーポイントとして複数の `.html` ファイルを指定するだけです:
107107

108108
```js twoslash [vite.config.js]
109-
import { resolve } from 'path'
109+
import { dirname, resolve } from 'node:path'
110+
import { fileURLToPath } from 'node:url'
110111
import { defineConfig } from 'vite'
111112

113+
const __dirname = dirname(fileURLToPath(import.meta.url))
114+
112115
export default defineConfig({
113116
build: {
114117
rollupOptions: {
@@ -134,9 +137,12 @@ HTML ファイルの場合、Vite は `rollupOptions.input` オブジェクト
134137
::: code-group
135138
136139
```js twoslash [vite.config.js(単一エントリー)]
137-
import { resolve } from 'path'
140+
import { dirname, resolve } from 'node:path'
141+
import { fileURLToPath } from 'node:url'
138142
import { defineConfig } from 'vite'
139143

144+
const __dirname = dirname(fileURLToPath(import.meta.url))
145+
140146
export default defineConfig({
141147
build: {
142148
lib: {
@@ -162,9 +168,12 @@ export default defineConfig({
162168
```
163169
164170
```js twoslash [vite.config.js(複数エントリー)]
165-
import { resolve } from 'path'
171+
import { dirname, resolve } from 'node:path'
172+
import { fileURLToPath } from 'node:url'
166173
import { defineConfig } from 'vite'
167174

175+
const __dirname = dirname(fileURLToPath(import.meta.url))
176+
168177
export default defineConfig({
169178
build: {
170179
lib: {

0 commit comments

Comments
 (0)