最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - how to exclude folder from build next js but still read from it? - Stack Overflow

programmeradmin0浏览0评论

I have a folder of a lot of json files. I want to exclude it from getting into build as it would increase the build size. But I also need to get data from those files and can't store in database. Is there any way to achieve this?

I have tried exclude folder at next.config.js but couldn't find any changes

I have a folder of a lot of json files. I want to exclude it from getting into build as it would increase the build size. But I also need to get data from those files and can't store in database. Is there any way to achieve this?

I have tried exclude folder at next.config.js but couldn't find any changes

Share Improve this question edited May 31, 2023 at 5:15 Sammy asked May 31, 2023 at 5:11 SammySammy 591 gold badge1 silver badge3 bronze badges 1
  • Please provide enough code so others can better understand or reproduce the problem. – Community Bot Commented May 31, 2023 at 8:13
Add a ment  | 

3 Answers 3

Reset to default 7

I solved the issue by adding the directory I wanted ignored to the exclude key in tsconfig.json (only applicable if using TypeScript)

{
  "exclude": ["node_modules", "MY_FOLDER"]
}

First you need to exclude the folder in next.config.js, lets say all the data that you need to exlude is in the data folder:

const nextConfig = {
  // ...
  exclude: ['data'],
};

Second you need to import the data folder using require in order the use the json data:

const users = require('./data/users.json');

I want this feature too but the only solution that simple and works is this:

export async function generateStaticParams() {
  if (process.env.MODULE != '') {
    return [{ slug: [] }]
  }
  return source.generateParams()
}

then:

MODULE=rpa pnpm run build

the out build would not include the dynamic route directory.

next version: ^14.2.15

发布评论

评论列表(0)

  1. 暂无评论