mirror of
https://github.com/BreizhHardware/Site-comptage-heure.git
synced 2026-01-18 16:17:28 +01:00
12 lines
236 B
TypeScript
12 lines
236 B
TypeScript
import type { NextConfig } from 'next';
|
|
import path from 'path';
|
|
|
|
const nextConfig: NextConfig = {
|
|
webpack: (config) => {
|
|
config.resolve.alias['@'] = path.resolve(__dirname);
|
|
return config;
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|