Skip to content

Commit

Permalink
build: replaced outdated next config option with new version
Browse files Browse the repository at this point in the history
  • Loading branch information
TyIsI committed Sep 23, 2024
1 parent 0494473 commit c613215
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
/** @type {import('next').NextConfig} */

const nextConfig = {
reactStrictMode: true,
experimental: {
outputStandalone: true
}
reactStrictMode: true,
output: 'standalone'
}

module.exports = nextConfig
6 changes: 2 additions & 4 deletions next.config.sample.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
/** @type {import('next').NextConfig} */

const nextConfig = {
reactStrictMode: true,
experimental: {
outputStandalone: true
}
reactStrictMode: true,
output: 'standalone'
}

module.exports = nextConfig

0 comments on commit c613215

Please sign in to comment.