10 lines
174 B
JavaScript
10 lines
174 B
JavaScript
|
|
/** @type {import('next').NextConfig} */
|
||
|
|
module.exports = {
|
||
|
|
reactStrictMode: true,
|
||
|
|
basePath: '/playground',
|
||
|
|
output: "export",
|
||
|
|
images: {
|
||
|
|
unoptimized: true
|
||
|
|
},
|
||
|
|
};
|