14 lines
259 B
JavaScript
14 lines
259 B
JavaScript
/**
|
|
* @type {import('next').NextConfig}
|
|
*/
|
|
const nextConfig = {
|
|
output: 'export',
|
|
reactStrictMode: true,
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
assetPrefix: "https://pages.fostin.de/sinusfox/Operations-Research-Tool/",
|
|
};
|
|
|
|
export default nextConfig;
|