11 lines
260 B
TypeScript
11 lines
260 B
TypeScript
declare module 'nuxt/schema' {
|
|
interface PublicRuntimeConfig {
|
|
clientProxyBasePath: string
|
|
serverApiBaseUrl: string
|
|
serverApiBasePath: string
|
|
}
|
|
}
|
|
|
|
// It is always important to ensure you import/export something when augmenting a type
|
|
export {}
|