Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
s00d committed Apr 28, 2024
1 parent ca666c8 commit eed7b0f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion specs/fixtures/basic_usage/installer-module/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default defineNuxtModule({
async setup(options, nuxt) {
const { resolve } = createResolver(import.meta.url)

installModule('../../../dist', {
installModule('@nuxtjs/i18n', {
langDir: resolve('./locales'),
vueI18n: resolve('./i18n.config.ts'),
locales: [
Expand Down
2 changes: 1 addition & 1 deletion specs/fixtures/basic_usage/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// https://nuxt.com/docs/guide/directory-structure/nuxt.config
export default defineNuxtConfig({
devtools: { enabled: true },
modules: ['./layer-module', './installer-module', '../../../dist'],
modules: ['./layer-module', './installer-module', '@nuxtjs/i18n'],
runtimeConfig: {
public: {
runtimeValue: 'Hello from runtime config!',
Expand Down
2 changes: 1 addition & 1 deletion specs/fixtures/issues/2590/modules/i18n-module/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default defineNuxtModule({
})
)

await installModule('../../../dist', {
await installModule('@nuxtjs/i18n', {
lazy: true,
defaultLocale: 'en',
experimental: {
Expand Down

0 comments on commit eed7b0f

Please sign in to comment.