UNPKG

wemeta-maps

Version:

Maps package for the WeMeta marketplace

19 lines (16 loc) 340 B
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; };