pre-commit now does yarn format and several other tasks

This commit is contained in:
Koper
2023-08-02 18:35:38 +07:00
parent 7192e9b1b9
commit a8ea3a8bdf
11 changed files with 99 additions and 85 deletions

View File

@@ -1,11 +1,10 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
output: "standalone",
};
module.exports = nextConfig;
// Sentry content below
const { withSentryConfig } = require("@sentry/nextjs");
@@ -40,5 +39,5 @@ module.exports = withSentryConfig(
// Automatically tree-shake Sentry logger statements to reduce bundle size
disableLogger: true,
}
},
);