15 lines
375 B
JavaScript
15 lines
375 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: "export", // keep: needed for next export
|
|
trailingSlash: true,
|
|
images: {
|
|
unoptimized: true, // keep: for static export
|
|
},
|
|
swcMinify: true, // explicit SWC minify
|
|
experimental: {
|
|
forceSwcTransforms: true // use SWC only
|
|
}
|
|
};
|
|
|
|
module.exports = nextConfig;
|