1 2 3 4 5 6 7 8 9 10
import fs from 'fs' // read the file names in the backgrounds folder const backgrounds = fs.readdirSync('static/backgrounds') await fs.promises.writeFile( 'src/_backgrounds.json', JSON.stringify(backgrounds), { encoding: 'utf8' } )