UNPKG
wemeta-maps
Version:
latest (1.0.0)
1.0.0
Maps package for the WeMeta marketplace
github.com/the-metaverse/maps
the-metaverse/maps
wemeta-maps
/
.storybook
/
webpack.config.js
19 lines
(16 loc)
•
340 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const
path
=
require
(
'path'
);
module
.exports = async ({
config
}) => {
config
.
module
.rules.push({ test: /\.(png|woff|woff2|eot|ttf)$/, use: [ { loader:
'file-loader'
, query: { name:
'[name].[ext]'
, }, }, ], include:
path
.resolve(__dirname,
'../'
), });
return
config
; };