13 lines
246 B
JavaScript
13 lines
246 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
basePath: '/landingpage',
|
|
experimental: {
|
|
allowedDevOrigins: ['192.168.179.124'],
|
|
},
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
output: 'export',
|
|
}
|
|
|
|
export default nextConfig
|