daaru00 / gridsome-plugin-i18n

Gridsome plugin for i18n
MIT License
53 stars 12 forks source link

Disallow automatic creation of the routes and adds customized routes creation support #18

Closed giuseppeaiello closed 4 years ago

giuseppeaiello commented 4 years ago

This adds the following options:

Usage:

options: {
   //...
   enablePathGeneration: false,
   routes: require('./src/routes'),
   //...
}

Example of the ./src/routes.js file:

module.exports = [
    {
      path: '/projects', component: './src/pages/Index.vue', locale: 'en', slug: '/projects'
    },
    {
      path: '/progetti', component: './src/pages/Index.vue', locale: 'it', slug: '/projects'
    }
];