Skip to content

Commit 3ea4f74

Browse files
author
Alex Gogl
committed
remove dist from vcs
1 parent 8e983a3 commit 3ea4f74

File tree

4 files changed

+2
-203
lines changed

4 files changed

+2
-203
lines changed

dist/vue-imgix.esm.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/vue-imgix.min.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

dist/vue-imgix.ssr.js

Lines changed: 0 additions & 199 deletions
This file was deleted.

src/entry.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import component from './vue-imgix.vue';
33
import ImgixClient from "imgix-core-js";
44

55
// install function executed by Vue.use()
6-
function install(Vue) {
6+
function install(Vue, options) {
77
if (install.installed) return;
88
install.installed = true;
99
var imgixClient = new ImgixClient({
1010
//just a sample domain right now, in a real case scenario this should be retrieved somewhere
11-
domain: "menuver.imgix.net"
11+
domain: options.baseURL
1212
// Do not use signed URLs with `secureURLToken` on the client side,
1313
// as this would leak your token to the world. Signed URLs should
1414
// be generated on the server.

0 commit comments

Comments
 (0)