84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
我有一個包含很多 json 檔案的資料夾。我想將其排除在建置之外,因為它會增加建置大小。但我還需要從這些文件中獲取數據,並且無法儲存在資料庫中。有什麼辦法可以實現這一點嗎?
我嘗試在 next.config.js 中排除資料夾,但找不到任何更改
首先,您需要排除next.config.js中的資料夾,假設您需要排除的所有資料都在data資料夾中:
next.config.js
data
const nextConfig = { // ... exclude: ['data'], };
其次,您需要使用require匯入data資料夾,以便使用 json 資料:
require
const users = require('./data/users.json');
首先,您需要排除
next.config.js
中的資料夾,假設您需要排除的所有資料都在data
資料夾中:其次,您需要使用
require
匯入data
資料夾,以便使用 json 資料: