Skip to content
Closed

fix #332

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
/** @type {import('next').NextConfig} */
const { version } = require('./package.json');
const { version } = require("./package.json");

const nextConfig = {
reactStrictMode: false,
output: 'standalone',
output: "standalone",
typescript: {
ignoreBuildErrors: true
ignoreBuildErrors: true,
},
env: {
NEXT_PUBLIC_APP_VERSION: version,
NEXT_PUBLIC_CREATED_DATE: new Date().toISOString(),
}
}

module.exports = nextConfig
},
};

module.exports = nextConfig;
Loading