Interpolations not working on production build
Open
- Dominant language
- TypeScript
- Stars
- 204
- Forks
- 18
- PR merge metrics
- No merged PRs in 30d
Description
Interpolations not working on nuxt3 build
Declaration
```JavaScript
{
welcome: 'Welcome {name}!',
hello: 'Hello',
}
```
Usage
```Vue
import { useI18n } from 'vue-i18n'
const { t } = useI18n({ useScope: 'global' })
{{ t('hello') }}
{{ t('welcome', { name: 'buddy' }) }}
```
Contributor guide
Assessment
This issue has not been assessed yet.