瀏覽代碼

build to `bundle`

Joystream Stats 1 年之前
父節點
當前提交
4385c8bd4e
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      webpack.config.js

+ 2 - 2
webpack.config.js

@@ -12,7 +12,7 @@ process.env.NODE_ENV = DEV ? 'development' : 'production';
 module.exports = {
 module.exports = {
     entry: './src/index.tsx',
     entry: './src/index.tsx',
     output: {
     output: {
-        path: path.join(__dirname, '/public'),
+        path: path.join(__dirname, '/bundle'),
         filename: 'bundle.js'
         filename: 'bundle.js'
     },
     },
     // devServer: {
     // devServer: {
@@ -123,4 +123,4 @@ module.exports = {
       }),
       }),
       new NodePolyfillPlugin()
       new NodePolyfillPlugin()
     ]
     ]
-}
+}