Skip to content

Commit

Permalink
Add output path to vanilla example webpack config (#994)
Browse files Browse the repository at this point in the history
  • Loading branch information
samal-rasmussen authored and johnnyreilly committed Sep 3, 2019
1 parent b3fd1bf commit ab3ba29
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion examples/vanilla/webpack.config.js
@@ -1,8 +1,13 @@
'use strict';
const path = require('path');

module.exports = {
devtool: 'inline-source-map',
entry: './src/index.ts',
entry: './src/index.ts',
output: {
filename: 'main.js',
path: path.resolve(__dirname, 'dist')
},
module: {
rules: [
{
Expand Down

0 comments on commit ab3ba29

Please sign in to comment.