duckil_plm/fems-app/next.config.mjs

11 lines
193 B
JavaScript
Raw Normal View History

2024-11-02 00:28:57 +09:00
/** @type {import('next').NextConfig} */
2024-11-04 17:51:38 +09:00
const nextConfig = {
reactStrictMode: true,
experimental: {
optimizeCss: true,
scrollRestoration: true,
},
};
2024-11-02 00:28:57 +09:00
export default nextConfig;