mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-01-17 22:28:32 +01:00
18 lines
383 B
JavaScript
18 lines
383 B
JavaScript
const withSass = require('@zeit/next-sass');
|
|
const withCSS = require('@zeit/next-css');
|
|
|
|
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
|
|
},
|
|
})); |