Update landing page design (#1)
Co-authored-by: Jimmy Vargo <jimmyvargo@Jimmys-MacBook-Air.local> Co-authored-by: Jimmy Vargo <james@ayo.tokyo> Reviewed-on: ayo/website#1
This commit is contained in:
parent
5e21b9d8ff
commit
bb2fd54e41
44 changed files with 633 additions and 320 deletions
|
|
@ -1,6 +1,6 @@
|
|||
const path = require('path');
|
||||
const fs = require('fs');
|
||||
const marked = require('marked');
|
||||
const marked = require('marked').marked;
|
||||
|
||||
const CopyPlugin = require('copy-webpack-plugin');
|
||||
|
||||
|
|
@ -129,6 +129,14 @@ module.exports = {
|
|||
{
|
||||
test: /\.svg$/,
|
||||
type: "asset/inline"
|
||||
},
|
||||
{
|
||||
test: /\.(png|jpg|jpeg|gif)$/,
|
||||
type: "asset/resource"
|
||||
},
|
||||
{
|
||||
test: /\.(ttf|otf)$/,
|
||||
type: "asset/resource"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -142,7 +150,8 @@ module.exports = {
|
|||
{from: 'assets/blog', to: 'blog'},
|
||||
{from: 'assets/icons', to: 'assets/icons'},
|
||||
{from: 'assets/images', to: 'assets/images'},
|
||||
{from: 'assets/theme', to: 'assets/theme'}
|
||||
{from: 'assets/theme', to: 'assets/theme'},
|
||||
{from: 'assets/fonts', to: 'assets/fonts'}
|
||||
]})
|
||||
],
|
||||
output:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue