8 lines
144 B
JavaScript
8 lines
144 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'export',
|
|
basePath: '/demos/deweb2024'
|
|
};
|
|
|
|
export default nextConfig;
|