Skip to content

Commit

Permalink
feat(next): Add config
Browse files Browse the repository at this point in the history
  • Loading branch information
1ilsang committed Mar 1, 2024
1 parent 835817b commit 89b7bfe
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions next.config.cjs
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
/** @type {import('next').NextConfig} */

// eslint-disable-next-line @typescript-eslint/no-var-requires
const path = require('path');

module.exports = {
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
// this includes files from the monorepo base two directories up
// outputFileTracingRoot: path.join(__dirname, "../../packages/content/posts"),
Expand All @@ -16,3 +15,5 @@ module.exports = {
includePaths: [path.join(__dirname, 'styles')],
},
};

module.exports = nextConfig;

0 comments on commit 89b7bfe

Please sign in to comment.