refactor: move shared config into `~/config/`
parent
7a07d21b76
commit
83d313c47b
|
@ -49,7 +49,7 @@ const datetimeFormats = Object.keys(locales).reduce((acc, key) => {
|
|||
return acc
|
||||
}, <DateTimeFormats>{})
|
||||
|
||||
const i18n: NuxtI18nOptions = {
|
||||
export const i18n: NuxtI18nOptions = {
|
||||
locales,
|
||||
strategy: 'no_prefix',
|
||||
detectBrowserLanguage: false,
|
||||
|
@ -62,7 +62,4 @@ const i18n: NuxtI18nOptions = {
|
|||
datetimeFormats,
|
||||
},
|
||||
lazy: true,
|
||||
|
||||
}
|
||||
|
||||
export { i18n }
|
|
@ -1,6 +1,6 @@
|
|||
import Inspect from 'vite-plugin-inspect'
|
||||
import { isCI, isDevelopment } from 'std-env'
|
||||
import { i18n } from './modules/i18n-configuration'
|
||||
import { i18n } from './config/i18n'
|
||||
|
||||
export default defineNuxtConfig({
|
||||
ssr: false,
|
||||
|
|
Loading…
Reference in New Issue