@draftbox-co/gatsby-ghost-novela-theme
Version:
A Gatsby theme plugin for creating blogs from headless Ghost CMS.
17 lines (15 loc) • 525 B
JavaScript
const path = require('path');
module.exports = ({ actions }) => {
actions.setWebpackConfig({
resolve: {
alias: {
'@components': path.resolve(__dirname, '../../components/'),
'@icons': path.resolve(__dirname, '../../icons/'),
'@styles': path.resolve(__dirname, '../../styles/'),
'@utils': path.resolve(__dirname, '../../utils/'),
'@types': path.resolve(__dirname, '../../types/'),
},
extensions: ['.js', '.json', '.ts', '.tsx'],
},
});
};