14 lines
254 B
JavaScript
14 lines
254 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const basePath = process.env.BASE_PATH || "";
|
|
|
|
const nextConfig = {
|
|
// output: "export",
|
|
trailingSlash: true,
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
basePath,
|
|
};
|
|
|
|
module.exports = nextConfig;
|