mirror of
https://github.com/yude-jp/yude.jp
synced 2024-11-17 02:52:38 +09:00
18 lines
382 B
JavaScript
18 lines
382 B
JavaScript
const nextTranslate = require('next-translate')
|
|
|
|
module.exports = nextTranslate({
|
|
i18n: {
|
|
locales: ['ja', 'en'],
|
|
defaultLocale: 'ja',
|
|
},
|
|
images: {
|
|
domains: ['mackerel.io', 'mc-heads.net'],
|
|
},
|
|
webpack: function (config) {
|
|
config.module.rules.push({
|
|
test: /\.md$/,
|
|
use: 'raw-loader',
|
|
})
|
|
return config
|
|
},
|
|
}) |