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