Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 783 Bytes

CHANGELOG.md

File metadata and controls

43 lines (31 loc) · 783 Bytes

v1.0.3 (2019-01-26)

New Features

  • Now, you can define a custom root directory for each alias.

    {
      root: './src',
      aliases: {
        ...
        static: {
          root: './public', // <- will used as this alias' root dir
          alias: './static' // <- will become ./public/static
        },
        ...
      }
    }

    In this example, Gatsby is going to use /public directory as static alias' root directory rather than /src.

Updates

  • The very top alias key name has been replaced with aliases

v1.0.2 (2019-01-25)

Update

  • Typo

v1.0.1 (2019-01-25)

New Features

  • Added the plugin assets

v1.0.0 (2019-01-25)

  • Initial Release