mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 14:10:22 +00:00
16 lines
317 B
JavaScript
16 lines
317 B
JavaScript
/* eslint-disable @typescript-eslint/no-var-requires */
|
|
// const { withSentryConfig } = require('@sentry/nextjs')
|
|
|
|
const VERSION = require('./package.json').version
|
|
|
|
module.exports = {
|
|
env: {
|
|
NEXT_PUBLIC_RELEASE_VERSION: VERSION
|
|
},
|
|
future: {
|
|
webpack5: true,
|
|
},
|
|
experimental: {
|
|
scrollRestoration: true
|
|
}
|
|
} |