We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e4eda6 commit a6c8301Copy full SHA for a6c8301
README.md
@@ -112,8 +112,8 @@ Complete logout implementation that properly terminates both the local session a
112
**Partially enabled.** Vite includes some security headers by default, but consider adding custom headers in `vite.config.ts`:
113
114
```typescript
115
-import { defineConfig } from 'vite'
116
-import react from '@vitejs/plugin-react'
+import { defineConfig } from 'vite';
+import react from '@vitejs/plugin-react';
117
118
export default defineConfig({
119
plugins: [react()],
@@ -125,7 +125,7 @@ export default defineConfig({
125
'Referrer-Policy': 'strict-origin-when-cross-origin',
126
},
127
128
-})
+});
129
```
130
131
At minimum, configure:
0 commit comments