Skip to content

Commit

Permalink
chore(build): change dist folder
Browse files Browse the repository at this point in the history
  • Loading branch information
believer committed Aug 19, 2019
1 parent a95d6bd commit 7d1888e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
npm-debug.log
/lib
/node_modules/
dist
5 changes: 2 additions & 3 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const outputDir = path.join(__dirname, "build/");
const outputDir = path.join(__dirname, "dist/");

const isProd = process.env.NODE_ENV === "production";

Expand All @@ -20,7 +20,7 @@ module.exports = {
contentBase: outputDir,
port: process.env.PORT || 3000,
historyApiFallback: true,
stats: 'minimal'
stats: "minimal"
},
module: {
rules: [
Expand All @@ -35,4 +35,3 @@ module.exports = {
]
}
};

1 comment on commit 7d1888e

@vercel
Copy link

@vercel vercel bot commented on 7d1888e Aug 19, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.