Skip to content

Commit

Permalink
Migrate configuration to cjs/mjs format
Browse files Browse the repository at this point in the history
  • Loading branch information
rtivital committed Nov 21, 2023
1 parent 1aa0be8 commit 4fe897f
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 13 deletions.
5 changes: 4 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
*.js
*.js
*.cjs
*.mjs
*.d.ts
File renamed without changes.
File renamed without changes.
12 changes: 0 additions & 12 deletions next.config.js

This file was deleted.

11 changes: 11 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/** @type {import('next').NextConfig} */
const config = {
reactStrictMode: false,
trailingSlash: true,
output: 'export',
eslint: {
ignoreDuringBuilds: true,
},
};

export default config;
File renamed without changes.

0 comments on commit 4fe897f

Please sign in to comment.