2022-06-17 12:02:09 +02:00
|
|
|
import configBuilder from '../shared/config/next.mjs'
|
2022-05-20 15:34:08 +02:00
|
|
|
import i18nConfig from './next-i18next.config.js'
|
2022-06-19 16:09:53 +02:00
|
|
|
import { banner } from '../../scripts/banner.mjs'
|
2021-12-10 09:56:19 +01:00
|
|
|
|
2022-02-13 16:00:00 +01:00
|
|
|
const config = configBuilder('dev')
|
2022-05-20 15:34:08 +02:00
|
|
|
config.i18n = i18nConfig.i18n
|
2022-06-19 16:09:53 +02:00
|
|
|
let greeting = false
|
|
|
|
if (!greeting) {
|
|
|
|
greeting = true
|
|
|
|
console.log(banner+"\n")
|
|
|
|
}
|
2022-02-13 16:00:00 +01:00
|
|
|
|
2022-06-12 22:37:04 +02:00
|
|
|
// Suppress warnings about importing version from package.json
|
|
|
|
// We'll deal with it in v3 of FreeSewing
|
|
|
|
config.ignoreWarnings = [
|
|
|
|
/only default export is available soon/
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-02-13 16:00:00 +01:00
|
|
|
export default config
|