Skip to content

Commit daf30d4

Browse files
committed
Rename output directory
1 parent dde31bf commit daf30d4

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ jspm_packages
4848
*.tgz
4949

5050
# webpack build
51-
build
5251
dist
52+
out
5353

5454
# build config file
5555
app/config.js

static/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@
5959
<div id="app">
6060
<router-view></router-view>
6161
</div>
62-
<script src="../dist/app.js"></script>
62+
<script src="../out/app.js"></script>
6363
</body>
6464
</html>

static/plurk_form.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@
5454
<body>
5555
<div id="app">
5656
</div>
57-
<script src="../dist/plurkForm.js"></script>
57+
<script src="../out/plurkForm.js"></script>
5858
</body>
5959
</html>

webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ module.exports = {
77
plurkForm: './src/form.js'
88
},
99
output: {
10-
path: path.resolve(__dirname, './dist'),
11-
publicPath: '/dist/',
10+
path: path.resolve(__dirname, './out'),
11+
publicPath: '/out/',
1212
filename: '[name].js'
1313
},
1414
module: {

0 commit comments

Comments
 (0)