mirror of
https://github.com/kevinveenbirkenbach/roulette-wheel.git
synced 2024-12-04 15:36:52 +01:00
prod config
This commit is contained in:
parent
88b8f9e2ad
commit
96319232d6
19
README.md
Normal file
19
README.md
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# roulette-wheel
|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
Application used for entertainment. It helps to decide if we are not determined what should we choose, do or eat etc.
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
* `adding new elements`
|
||||||
|
* `chaning color of elements`
|
||||||
|
* `remove single element`
|
||||||
|
* `remove all elements`
|
||||||
|
* `dark and light mode`
|
||||||
|
|
||||||
|
## Demo
|
||||||
|
|
||||||
|
**Live: **
|
||||||
|
|
||||||
|
![roulette-wheel](pictures/view.png)
|
1
dist/bundle.js
vendored
Normal file
1
dist/bundle.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "webpack-dev-server",
|
"start": "webpack-dev-server",
|
||||||
"build": "webpack --config config.prod.js"
|
"build": "webpack --config webpack.config.prod.js"
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Patryk Wojtiuk",
|
"name": "Patryk Wojtiuk",
|
||||||
|
BIN
pictures/view.png
Normal file
BIN
pictures/view.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 204 KiB |
@ -6,12 +6,12 @@ module.exports = {
|
|||||||
output: {
|
output: {
|
||||||
path:path.resolve(__dirname, "dist"),
|
path:path.resolve(__dirname, "dist"),
|
||||||
filename: "bundle.js",
|
filename: "bundle.js",
|
||||||
publicPath: 'dist'
|
publicPath: '/dist/'
|
||||||
},
|
},
|
||||||
module: {
|
module: {
|
||||||
rules: [
|
rules: [
|
||||||
{
|
{
|
||||||
test: /\.tsx?$/,
|
test: /\.ts$/,
|
||||||
use: 'ts-loader',
|
use: 'ts-loader',
|
||||||
exclude: /node_modules/
|
exclude: /node_modules/
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user