XeNote/next.config.js

15 lines
209 B
JavaScript
Raw Normal View History

2024-01-07 18:34:09 +00:00
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
2024-01-07 20:05:17 +00:00
output: 'export',
eslint: {
ignoreDuringBuilds: true
},
typescript: {
ignoreBuildErrors: true
}
2023-12-30 16:49:39 +00:00
}
2024-01-07 18:34:09 +00:00
export default nextConfig