mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
output path moved to webpack config
This commit is contained in:
parent
fdfdf056c8
commit
f47ccfdc83
2 changed files with 4 additions and 1 deletions
|
|
@ -8,7 +8,7 @@
|
|||
"license": "GPLv3",
|
||||
"scripts": {
|
||||
"start": "webpack-dev-server --mode development",
|
||||
"build": "webpack --mode production --output-path build",
|
||||
"build": "webpack --mode production",
|
||||
"storybook": "start-storybook --ci --config-dir ./storybook --static-dir ./ --port 6060",
|
||||
"test": "jest",
|
||||
"lint": "eslint src"
|
||||
|
|
|
|||
|
|
@ -8,6 +8,9 @@ const TerserPlugin = require('terser-webpack-plugin');
|
|||
|
||||
module.exports = {
|
||||
entry: './src/index.js',
|
||||
output: {
|
||||
path: path.join(__dirname, 'build')
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue