Next.js Discord

Discord Forum

`npm run build` doesn't create out dir

Unanswered
Yellowhead catfish posted this in #help-forum
Open in Discord
Yellowhead catfishOP
When I try to build my NextJS application via npm run build it does not create the out folder, although I have specified the export type in the config

next.config.js
/** @type {import('next').NextConfig} */
const nextConfig = {
    output: 'export',
    images: {
        domains: [
            "keny.cloud"
        ],
    }
}

export default nextConfig;

NextJS version: 13.5.7

7 Replies