Spaces:
Running
Running
Update next.config.mjs
Browse files- next.config.mjs +4 -0
next.config.mjs
CHANGED
@@ -1,9 +1,13 @@
|
|
1 |
/** @type {import('next').NextConfig} */
|
2 |
const nextConfig = {
|
3 |
reactStrictMode: true,
|
|
|
4 |
images: {
|
5 |
domains: ['localhost'],
|
6 |
},
|
|
|
|
|
|
|
7 |
webpack: (config) => {
|
8 |
config.module.rules.push({
|
9 |
test: /\.(woff|woff2|eot|ttf|otf)$/,
|
|
|
1 |
/** @type {import('next').NextConfig} */
|
2 |
const nextConfig = {
|
3 |
reactStrictMode: true,
|
4 |
+
output: 'standalone',
|
5 |
images: {
|
6 |
domains: ['localhost'],
|
7 |
},
|
8 |
+
experimental: {
|
9 |
+
outputFileTracingRoot: undefined,
|
10 |
+
},
|
11 |
webpack: (config) => {
|
12 |
config.module.rules.push({
|
13 |
test: /\.(woff|woff2|eot|ttf|otf)$/,
|