Updated airport data, fixed loader/header

This commit is contained in:
2023-12-21 14:19:17 -05:00
parent 8438acc68b
commit 0b2ef94b99
26 changed files with 472068 additions and 62093 deletions

View File

@@ -5,18 +5,14 @@ const nextConfig = {
eslint: {
ignoreDuringBuilds: true
},
// webpackDevMiddleware: (config) => {
// config.watchOptions = {
// poll: 1000,
// aggregateTimeout: 300
// };
// return config;
// },
publicRuntimeConfig: {
// remove private variables from processEnv
processEnv: Object.fromEntries(Object.entries(process.env).filter(([key]) => key.includes('NEXT_PUBLIC_')))
},
output: 'standalone'
output: 'standalone',
experimental: {
optimizePackageImports: ['@mantine/core', '@mantine/hooks'],
},
};
module.exports = nextConfig;