You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
441 B
21 lines
441 B
const path = require('path'); |
|
|
|
module.exports = { |
|
module: { |
|
rules: [ |
|
{ |
|
test: /\.(jpg|jpeg|png|gif|svg|eot|ttf|woff|woff2)$/i, |
|
loader: 'url-loader', |
|
}, |
|
{ |
|
test: /.scss$/, |
|
loaders: ['style-loader', 'css-loader', 'postcss-loader', 'sass-loader'], |
|
}, |
|
], |
|
}, |
|
resolve: { |
|
alias: { |
|
mastodon: path.resolve(__dirname, '..', 'app', 'javascript', 'mastodon'), |
|
}, |
|
}, |
|
};
|
|
|