style(frontend): login page styling touchup (#64)

This commit is contained in:
sct
2020-09-09 10:16:19 +09:00
committed by GitHub
parent 432ad76b3b
commit 6241d0cf78
8 changed files with 462 additions and 33 deletions

13
next.config.js Normal file
View File

@@ -0,0 +1,13 @@
module.exports = {
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
issuer: {
test: /\.(js|ts)x?$/,
},
use: ['@svgr/webpack'],
});
return config;
},
};