Skip to content

Commit b48963f

Browse files
committed
chore: ✏️ fix demo link
1 parent 9887396 commit b48963f

15 files changed

+6
-61
lines changed

.env.demo

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
NODE_ENV=production
22
EXTRACT_CSS=true
3-
BASE_URL=http://vuejs-google-maps.bookingkh.com/
3+
BASE_URL=https://google-maps.chantouch.me

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.DS_Store
22
node_modules
33
dist
4+
demo
45

56
/tests/e2e/videos/
67
/tests/e2e/screenshots/

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ events.
5959
Here a list of the available components that you can use with this plugin, click on them to discover more about the
6060
usage and see examples. If you are interested to see a __real life use__ checkout
6161
the [example](https://github.com/chantouchsek/vuejs-google-maps/tree/master/demo) folder which contains the source code
62-
of the [website](http://vuejs-google-maps.bookingkh.com/#/).
62+
of the [website](https://google-maps.chantouch.me).
6363

6464
* [Marker](#marker)
6565
* [AutoComplete](#autocomplete)

demo/css/app.830a5452.css

-1
This file was deleted.

demo/css/chunk-vendors.3d52a018.css

-5
This file was deleted.

demo/favicon.ico

-1.12 KB
Binary file not shown.

demo/img/logo.82b9c7a5.png

-6.69 KB
Binary file not shown.

demo/index.html

-1
This file was deleted.

demo/js/app.02292a05.js

-2
This file was deleted.

demo/js/app.02292a05.js.map

-1
This file was deleted.

demo/js/chunk-vendors.6e645754.js

-44
This file was deleted.

demo/js/chunk-vendors.6e645754.js.map

-1
This file was deleted.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"scripts": {
3333
"dev": "vue-cli-service serve",
3434
"build": "vue-cli-service build --target lib --name vuejs-google-maps ./lib/index.js",
35-
"build:demo": "vue-cli-service build --mode demo --dest demo",
35+
"build:demo": "vue-cli-service build --dest demo",
3636
"publish:demo": "git subtree push --prefix demo origin gh-pages",
3737
"lint": "vue-cli-service lint ./lib",
3838
"test:unit": "vue-cli-service test:unit",

src/main.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import Vue from 'vue'
22
import VueMaterial from 'vue-material'
33
import 'vue-material/dist/vue-material.min.css'
4+
import 'vuejs-google-maps/dist/vuejs-google-maps.css'
45

56
import VueGoogleMap from '../lib'
67

vue.config.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
module.exports = {
2-
publicPath: process.env.NODE_ENV === 'production'
3-
? '/vue-google-map/'
4-
: '/',
2+
publicPath: './',
53
css: { extract: true },
64
configureWebpack: {
75
output: {

0 commit comments

Comments
 (0)