Skip to content
This repository has been archived by the owner on Nov 28, 2024. It is now read-only.

Add Cache-control no store on dev #92

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions webpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ const config: WebpackConfiguration & {
'Access-Control-Allow-Origin': '*',
'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, PATCH, OPTIONS',
'Access-Control-Allow-Headers': 'X-Requested-With, Content-Type, Authorization',
'Cache-Control': 'no-store',
},
devMiddleware: {
writeToDisk: true,
Expand Down
Loading