feat: configure Next.js for standalone output
This commit is contained in:
@ -2,6 +2,7 @@
|
||||
const nextConfig = {
|
||||
reactStrictMode: true,
|
||||
// 他のカスタム設定をここに追加
|
||||
output: 'standalone',
|
||||
};
|
||||
|
||||
export default nextConfig;
|
||||
|
@ -0,0 +1,7 @@
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
reactStrictMode: true,
|
||||
output: 'standalone',
|
||||
};
|
||||
|
||||
module.exports = nextConfig;
|
||||
|
Reference in New Issue
Block a user