1
0
Fork 0

add logo and links to social networks

This commit is contained in:
Moritz Ruth 2019-02-20 19:16:47 +01:00
parent 01dd314499
commit 95f432d91e
24 changed files with 9152 additions and 1 deletions

12
aliases.webpack.config.js Normal file
View file

@ -0,0 +1,12 @@
const path = require('path');
module.exports = {
resolve: {
extensions: ['.js', '.json', '.vue'],
root: path.resolve(__dirname),
alias: {
'@': path.resolve(__dirname),
'~': path.resolve(__dirname),
},
},
};