gatsby-plugin-module-resolver
Advanced tools
Changelog
v1.0.3 (2019-01-26)
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
.
alias
key name has been replaced with aliases
<a name="1.0.2"></a>
Changelog
v1.0.1 (2019-01-25)
<a name="1.0.0"></a>