umami/next.config.js

20 lines
314 B
JavaScript
Raw Normal View History

2020-07-17 10:03:38 +02:00
require('dotenv').config();
const pkg = require('./package.json');
2020-07-17 10:03:38 +02:00
module.exports = {
env: {
VERSION: pkg.version,
},
2020-07-17 10:03:38 +02:00
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
issuer: {
test: /\.js$/,
},
use: ['@svgr/webpack'],
});
return config;
},
};