YZ
Size: a a a
YZ
ВЛ
N
const withSass = require('@zeit/next-sass');
const withCSS = require("@zeit/next-css");
const withOffline = require('next-offline')
//const fetch = require('isomorphic-unfetch');
const nextConfig = withCSS(withSass({
exportPathMap: function() {
return {
'/': { page: '/' }
};
},
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;
}
}));
module.exports = withOffline(nextConfig)
ВЛ
ВЛ
const withSass = require('@zeit/next-sass');
const withCSS = require("@zeit/next-css");
const withOffline = require('next-offline')
//const fetch = require('isomorphic-unfetch');
const nextConfig = withCSS(withSass({
exportPathMap: function() {
return {
'/': { page: '/' }
};
},
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;
}
}));
module.exports = withOffline(nextConfig)
ВЛ
N
ВЛ
N
ВЛ
N
ВЛ
ВЛ
ВЛ
ВЛ
N
ВЛ
YZ