Skip to content

Instantly share code, notes, and snippets.

@enpitsuLin
Last active October 28, 2021 14:49
Show Gist options
  • Save enpitsuLin/823a628242e6ea24be8ec306342ac043 to your computer and use it in GitHub Desktop.
Save enpitsuLin/823a628242e6ea24be8ec306342ac043 to your computer and use it in GitHub Desktop.
gatsby alias
exports.onCreateWebpackConfig = ({ actions }) => {
actions.setWebpackConfig({
resolve: {
alias: {
// alias like webpack configuration
'@': path.join(__dirname, './src')
}
}
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment