mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
Initial commit.
This commit is contained in:
commit
f7f0c05e12
27 changed files with 13028 additions and 0 deletions
15
next.config.js
Normal file
15
next.config.js
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
require('dotenv').config();
|
||||
|
||||
module.exports = {
|
||||
webpack(config) {
|
||||
config.module.rules.push({
|
||||
test: /\.svg$/,
|
||||
issuer: {
|
||||
test: /\.js$/,
|
||||
},
|
||||
use: ['@svgr/webpack'],
|
||||
});
|
||||
|
||||
return config;
|
||||
},
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue