Skip to content

Commit be1cd7f

Browse files
jessarchertimacdonald
authored andcommitted
[0.4] Change default SSR build directory (#70)
* Move default SSR build directory * Remove unnecessary npm script
1 parent 60a00a7 commit be1cd7f

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

UPGRADE.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -319,13 +319,13 @@ You may wish to add the following additional scripts to your `package.json`:
319319
If you prefer to build your assets on deploy instead of committing them to your repository, you may wish to add the SSR output directory to your `.gitignore` file:
320320

321321
```gitignore
322-
/storage/ssr
322+
/bootstrap/ssr
323323
```
324324

325325
You may start the SSR server using `node`:
326326

327327
```sh
328-
node storage/ssr/ssr.js
328+
node bootstrap/ssr/ssr.js
329329
```
330330

331331
### Optional: Expose Vite port when using Laravel Sail
@@ -489,6 +489,6 @@ rm vite.config.js
489489
You may also wish to remove any `.gitignore` paths you are no longer using:
490490

491491
```gitignore
492+
- /bootstrap/ssr
492493
- /public/build
493-
- /storage/ssr
494494
```

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
"build-plugin": "rm -rf dist && tsc && cp src/dev-server-index.html dist/",
2626
"build-inertia-helpers": "rm -rf inertia-helpers && tsc --project tsconfig.inertia-helpers.json",
2727
"lint": "eslint --ext .ts ./src ./tests",
28-
"ssr:serve": "vite build --ssr && node storage/ssr/ssr.js",
2928
"test": "vitest run"
3029
},
3130
"devDependencies": {

src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ interface PluginConfig {
3333
/**
3434
* The directory where the SSR bundle should be written.
3535
*
36-
* @default 'storage/ssr'
36+
* @default 'bootstrap/ssr'
3737
*/
3838
ssrOutputDirectory?: string
3939

@@ -305,7 +305,7 @@ function resolvePluginConfig(config: string|string[]|PluginConfig): Required<Plu
305305
publicDirectory: config.publicDirectory ?? 'public',
306306
buildDirectory: config.buildDirectory ?? 'build',
307307
ssr: config.ssr ?? config.input,
308-
ssrOutputDirectory: config.ssrOutputDirectory ?? 'storage/ssr',
308+
ssrOutputDirectory: config.ssrOutputDirectory ?? 'bootstrap/ssr',
309309
refresh: config.refresh ?? false,
310310
}
311311
}

tests/index.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ describe('laravel-vite-plugin', () => {
7979
const ssrConfig = plugin.config({ build: { ssr: true } }, { command: 'build', mode: 'production' })
8080
expect(ssrConfig.base).toBe('/build/')
8181
expect(ssrConfig.build.manifest).toBe(false)
82-
expect(ssrConfig.build.outDir).toBe('storage/ssr')
82+
expect(ssrConfig.build.outDir).toBe('bootstrap/ssr')
8383
expect(ssrConfig.build.rollupOptions.input).toBe('resources/js/ssr.js')
8484
})
8585

0 commit comments

Comments
 (0)