mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00:00
ee017ca533
* add IDE helper for Webpack * fix ESLint error in IDE helper * fix IDE helper code style
13 lines
324 B
JavaScript
13 lines
324 B
JavaScript
/* global path */
|
|
/*
|
|
Preferences | Languages & Frameworks | JavaScript | Webpack | webpack configuration file
|
|
jetbrains://WebStorm/settings?name=Languages+%26+Frameworks--JavaScript--Webpack
|
|
*/
|
|
module.exports = {
|
|
resolve: {
|
|
alias: {
|
|
'mastodon': path.resolve(__dirname, 'app/javascript/mastodon'),
|
|
},
|
|
},
|
|
};
|