Skip to content

Commit

Permalink
feat(metronome-web): updated next.config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
yungblud committed Feb 12, 2024
1 parent 5b402dc commit 2fca412
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion packages/metronome-web/next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
/** @type {import('next').NextConfig} */

const path = require('path')

const nextConfig = {
reactStrictMode: true,
output: 'standalone',
experimental: {
externalDir: true,
outputFileTracingRoot: path.join(__dirname, '../../'),
},
webpack: (config) => {
return config
},
}

module.exports = nextConfig

0 comments on commit 2fca412

Please sign in to comment.