9 lines
164 B
JavaScript
9 lines
164 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: false,
|
|
// output:"export",
|
|
trailingSlash:true
|
|
};
|
|
|
|
module.exports = nextConfig;
|