Skip to content

Commit

Permalink
fix: vercel deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
0xtiti committed Jul 17, 2024
1 parent c6e6722 commit 5be359a
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
/** @type {import('next').NextConfig} */
const path = require('path');

const nextConfig = {
i18n: {
locales: ['en', 'es'],
defaultLocale: 'en',
},
i18n: {
locales: ['en', 'es'],
defaultLocale: 'en',
},
localePath: path.resolve('./public/locales'),
outputFileTracing: true
};

export default nextConfig;

0 comments on commit 5be359a

Please sign in to comment.