mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-09 12:57:25 -05:00
feature/file-templates: add __webpack.config.js template
This commit is contained in:
@ -0,0 +1,15 @@
|
||||
module.exports = {
|
||||
entry: [
|
||||
${1:'./app/main.js'}
|
||||
],
|
||||
output: {
|
||||
path: __dirname + '/dist',
|
||||
filename: "app.bundle.js"
|
||||
},
|
||||
module: {
|
||||
loaders: [
|
||||
{ test: /\.js$/, include: __dirname + '/app', loader: 'babel-loader' }$0
|
||||
]
|
||||
}
|
||||
// plugins: []
|
||||
};
|
Reference in New Issue
Block a user