feat: scaffold holiday booking project

This commit is contained in:
2026-05-22 07:54:09 +00:00
commit abfc8dcf8e
39 changed files with 8941 additions and 0 deletions

15
next.config.js Normal file
View File

@@ -0,0 +1,15 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
distDir: '.next',
eslint: {
ignoreDuringBuilds: true,
},
webpack: (config) => {
config.resolve.alias['@'] = require('path').resolve(__dirname, 'src');
return config;
},
};
module.exports = nextConfig;