Compare commits

..

5 Commits

Author SHA1 Message Date
dependabot[bot]
8bf022f0f8 Bump json5, @vue/cli-plugin-pwa, @vue/cli-service, sass-loader and vuetify-loader
Bumps [json5](https://github.com/json5/json5) to 2.2.3 and updates ancestor dependencies [json5](https://github.com/json5/json5), [@vue/cli-plugin-pwa](https://github.com/vuejs/vue-cli/tree/HEAD/packages/@vue/cli-plugin-pwa), [@vue/cli-service](https://github.com/vuejs/vue-cli/tree/HEAD/packages/@vue/cli-service), [sass-loader](https://github.com/webpack-contrib/sass-loader) and [vuetify-loader](https://github.com/vuetifyjs/vuetify-loader). These dependencies need to be updated together.


Updates `json5` from 0.5.1 to 2.2.3
- [Release notes](https://github.com/json5/json5/releases)
- [Changelog](https://github.com/json5/json5/blob/main/CHANGELOG.md)
- [Commits](https://github.com/json5/json5/compare/v0.5.1...v2.2.3)

Updates `@vue/cli-plugin-pwa` from 3.11.0 to 5.0.8
- [Release notes](https://github.com/vuejs/vue-cli/releases)
- [Changelog](https://github.com/vuejs/vue-cli/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/vuejs/vue-cli/commits/v5.0.8/packages/@vue/cli-plugin-pwa)

Updates `@vue/cli-service` from 3.11.0 to 5.0.8
- [Release notes](https://github.com/vuejs/vue-cli/releases)
- [Changelog](https://github.com/vuejs/vue-cli/blob/dev/CHANGELOG.md)
- [Commits](https://github.com/vuejs/vue-cli/commits/v5.0.8/packages/@vue/cli-service)

Updates `sass-loader` from 7.3.1 to 13.2.0
- [Release notes](https://github.com/webpack-contrib/sass-loader/releases)
- [Changelog](https://github.com/webpack-contrib/sass-loader/blob/master/CHANGELOG.md)
- [Commits](https://github.com/webpack-contrib/sass-loader/compare/v7.3.1...v13.2.0)

Updates `vuetify-loader` from 1.3.0 to 1.9.2
- [Release notes](https://github.com/vuetifyjs/vuetify-loader/releases)
- [Changelog](https://github.com/vuetifyjs/vuetify-loader/blob/master/.release-it.json)
- [Commits](https://github.com/vuetifyjs/vuetify-loader/compare/v1.3.0...v1.9.2)

---
updated-dependencies:
- dependency-name: json5
  dependency-type: indirect
- dependency-name: "@vue/cli-plugin-pwa"
  dependency-type: direct:development
- dependency-name: "@vue/cli-service"
  dependency-type: direct:development
- dependency-name: sass-loader
  dependency-type: direct:development
- dependency-name: vuetify-loader
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-01 10:50:19 +00:00
acmexii
407faecc7b Update Dockerfile 2021-09-16 15:58:50 +09:00
Jinyoung Jang
8f26dea2b4 Update vue.config.js 2020-11-01 22:59:33 +09:00
Jinyoung Jang
cafd0c3b17 Add files via upload 2020-11-01 22:59:03 +09:00
Jinyoung Jang
20d9586ea9 Add files via upload 2020-11-01 22:58:02 +09:00
5 changed files with 6944 additions and 4145 deletions

View File

@@ -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

File diff suppressed because it is too large Load Diff

View File

@@ -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
View File

@@ -0,0 +1,9 @@
module.exports = {
configureWebpack: {
devServer: {
port: '8080',
disableHostCheck: true
}
},
}

16
webpack.config.js Normal file
View 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,
},
}