Compare commits
5 Commits
dependabot
...
dependabot
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8bf022f0f8 | ||
|
|
407faecc7b | ||
|
|
8f26dea2b4 | ||
|
|
cafd0c3b17 | ||
|
|
20d9586ea9 |
@@ -1,10 +1,9 @@
|
||||
FROM mhart/alpine-node:10
|
||||
FROM webratio/nodejs-http-server
|
||||
|
||||
VOLUME /tmp
|
||||
RUN npm install -g spa-http-server
|
||||
ADD dist /opt/www
|
||||
ADD run.sh /opt/run.sh
|
||||
ARG VUE_APP_API_HOST
|
||||
ENV VUE_APP_API_HOST=$VUE_APP_API_HOST
|
||||
EXPOSE 8080
|
||||
ENTRYPOINT ["sh","/opt/run.sh" ]
|
||||
ENTRYPOINT ["sh","/opt/run.sh" ]
|
||||
|
||||
11051
package-lock.json
generated
11051
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -28,12 +28,12 @@
|
||||
"vuex": "^3.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@vue/cli-plugin-pwa": "^3.11.0",
|
||||
"@vue/cli-service": "^3.11.0",
|
||||
"@vue/cli-plugin-pwa": "^5.0.8",
|
||||
"@vue/cli-service": "^5.0.8",
|
||||
"sass": "^1.17.4",
|
||||
"sass-loader": "^7.1.0",
|
||||
"sass-loader": "^13.2.0",
|
||||
"vue-cli-plugin-vuetify": "^0.6.3",
|
||||
"vue-template-compiler": "^2.6.10",
|
||||
"vuetify-loader": "^1.2.2"
|
||||
"vuetify-loader": "^1.9.2"
|
||||
}
|
||||
}
|
||||
|
||||
9
vue.config.js
Normal file
9
vue.config.js
Normal file
@@ -0,0 +1,9 @@
|
||||
module.exports = {
|
||||
configureWebpack: {
|
||||
devServer: {
|
||||
port: '8080',
|
||||
disableHostCheck: true
|
||||
}
|
||||
},
|
||||
|
||||
}
|
||||
16
webpack.config.js
Normal file
16
webpack.config.js
Normal file
@@ -0,0 +1,16 @@
|
||||
module.exports = {
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
|
||||
test: /\.css$/,
|
||||
use: [ 'style-loader', 'css-loader', 'cssimportant-loader' ]
|
||||
}
|
||||
]
|
||||
},
|
||||
devServer: {
|
||||
host: 'es2cd.io',
|
||||
port: 8080,
|
||||
disableHostCheck : true,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user