feat: modernized web application

This commit is contained in:
2026-03-31 15:21:08 +09:00
parent f7019403c4
commit b5a1c08024
47 changed files with 1569 additions and 103 deletions

15
nextjs/next.config.mjs Normal file
View File

@@ -0,0 +1,15 @@
import path from 'path';
import { fileURLToPath } from 'url';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
outputFileTracingRoot: path.join(__dirname, '..'),
sassOptions: {
includePaths: ['src/styles'],
},
};
export default nextConfig;