mirror of
https://github.com/ArtistGrid/sheets.git
synced 2025-11-02 07:01:55 +00:00
17 lines
No EOL
426 B
JavaScript
17 lines
No EOL
426 B
JavaScript
/**
|
|
* @type {import('next').NextConfig}
|
|
*/
|
|
const nextConfig = {
|
|
output: 'export',
|
|
|
|
// Optional: Change links `/me` -> `/me/` and emit `/me.html` -> `/me/index.html`
|
|
// trailingSlash: true,
|
|
|
|
// Optional: Prevent automatic `/me` -> `/me/`, instead preserve `href`
|
|
// skipTrailingSlashRedirect: true,
|
|
|
|
// Optional: Change the output directory `out` -> `dist`
|
|
// distDir: 'dist',
|
|
}
|
|
|
|
module.exports = nextConfig |