mirror of
https://github.com/tiennm99/pikachu.git
synced 2026-09-10 10:21:33 +00:00
8 lines
135 B
JavaScript
8 lines
135 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'export',
|
|
distDir: 'dist'
|
|
};
|
|
|
|
export default nextConfig;
|