refactor: configure vite and next.js for correct module loading

This commit is contained in:
2025-06-04 11:11:45 +09:00
parent 4705247246
commit 34e9c33484
3 changed files with 3 additions and 2 deletions

View File

@ -2,6 +2,7 @@
const nextConfig = {
reactStrictMode: true,
output: 'standalone',
// Vite を使用している場合は Next.js の dev server は使わない
};
module.exports = nextConfig;