mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 19:01:08 +02:00
🐛 fix(mana-core-auth): add explicit urlencoded body parser for OAuth token endpoint
This commit is contained in:
parent
191c7b4cc7
commit
550083241f
12 changed files with 627 additions and 204 deletions
|
|
@ -3,7 +3,7 @@
|
|||
* Provides consistent SSR and optimization settings.
|
||||
*/
|
||||
|
||||
import type { UserConfig } from 'vite';
|
||||
import type { UserConfig, UserConfigExport } from 'vite';
|
||||
|
||||
/**
|
||||
* Common ManaCore shared packages that need SSR configuration.
|
||||
|
|
@ -108,7 +108,7 @@ export function createViteConfig(options: ViteConfigOptions): Partial<UserConfig
|
|||
export function mergeViteConfig(
|
||||
baseConfig: Partial<UserConfig>,
|
||||
appConfig: Partial<UserConfig>
|
||||
): UserConfig {
|
||||
): UserConfigExport {
|
||||
return {
|
||||
...baseConfig,
|
||||
...appConfig,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue