2021-12-11 14:04:05 +01:00
|
|
|
import configBuilder from '../freesewing.shared/config/next.mjs'
|
2022-05-20 15:34:08 +02:00
|
|
|
import i18nConfig from './next-i18next.config.js'
|
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-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
|