- Implemented astro-i18next for multi-language support, including English, Dutch, and Italian. - Configured default locale and language fallback settings. - Defined routes for localized content in the configuration. - Updated package.json and package-lock.json to include new dependencies for i18next and related plugins.
23 lines
343 B
JavaScript
23 lines
343 B
JavaScript
import resolve from 'rollup-plugin-node-resolve'
|
|
import commonjs from 'rollup-plugin-commonjs'
|
|
import pkg from './package.json'
|
|
|
|
export default {
|
|
input: `index.js`,
|
|
plugins: [
|
|
commonjs(),
|
|
resolve(),
|
|
],
|
|
output: [
|
|
{
|
|
file: pkg.main,
|
|
format: `cjs`
|
|
},
|
|
{
|
|
name: 'deepmerge',
|
|
file: 'dist/umd.js',
|
|
format: `umd`
|
|
},
|
|
],
|
|
}
|