Add links in hero section

This commit is contained in:
Kamran Ahmed
2019-09-04 16:32:25 +04:00
parent 105df7a02a
commit 8cf49540f9
6 changed files with 89 additions and 14 deletions

View File

@@ -1,4 +1,18 @@
const withSass = require('@zeit/next-sass');
const withCSS = require('@zeit/next-css');
module.exports = withCSS(withSass());
module.exports = withCSS(withSass({
webpack(config, options) {
config.module.rules.push({
test: /\.(png|jpg|gif|svg|eot|ttf|woff|woff2)$/,
use: {
loader: 'url-loader',
options: {
limit: 100000,
},
},
});
return config
},
}));