We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea6d7f4 commit 5dd2deeCopy full SHA for 5dd2dee
2 files changed
.gitignore
@@ -34,3 +34,5 @@ cypress/videos
34
.next
35
next-env.d.ts
36
.vercel
37
+
38
+.vscode/settings.json
next.config.mjs
@@ -3,9 +3,6 @@ import createNextIntlPlugin from 'next-intl/plugin';
3
const withNextIntl = createNextIntlPlugin('./src/i18n/request.ts');
4
5
/** @type {import('next').NextConfig} */
6
-const nextConfig = {
7
- output: 'standalone',
8
- //assetPrefix: process.env.ASSET_PREFIX, // https://static.example.com This would be the URL to the CDN where static assets are hosted
9
-};
+const nextConfig = {};
10
11
export default withNextIntl(nextConfig);
0 commit comments