1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-08-08 07:07:15 +02:00

Rename public -> dist

This commit is contained in:
Phuoc Nguyen
2019-11-23 12:55:25 +07:00
parent 2bc973f4d3
commit f1b7a2bc59
3 changed files with 6 additions and 6 deletions

View File

@@ -3,7 +3,7 @@ const path = require('path');
module.exports = {
entry: './client/index.jsx',
output: {
path: path.join(__dirname, 'public'),
path: path.join(__dirname, 'dist'),
filename: 'bundle.js',
},
module: {
@@ -24,6 +24,6 @@ module.exports = {
},
devtool: 'cheap-module-eavl-source-map',
devServer: {
contentBase: path.join(__dirname, 'public')
contentBase: path.join(__dirname, 'dist')
},
};