13 lines
213 B
JavaScript
13 lines
213 B
JavaScript
/**
|
|
* @type {import('next').NextConfig}
|
|
*/
|
|
const config = {
|
|
distDir: 'out',
|
|
output: 'export',
|
|
pageExtensions: ['ts', 'tsx'],
|
|
poweredByHeader: false,
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
module.exports = config;
|