Skip to content

Commit

Permalink
ci: add config to debug deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Daviancold committed Nov 6, 2024
1 parent 6408d0a commit 163f6a1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions frontend/next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
productionBrowserSourceMaps: true,
webpack: (config, { isServer }) => {
if (isServer) {
config.devtool = 'source-map'
}
return config
},
images: {
remotePatterns: [
{
Expand Down

0 comments on commit 163f6a1

Please sign in to comment.