Win10, VirtualBox,Ubuntu, Vue-cli 3 - watching not working
I cloned project from github and deployment on VM.
All works fine except watching if any file in project updating.
VagrantFile have string to syn folder
config.vm.synced_folder './', '/app', owner: 'vagrant', group: 'vagrant'
Tried to add vue.config.js with
module.exports = {
configureWebpack: {
devServer: {
watchOptions: {
ignored: ['node_modules'],
aggregateTimeout: 300,
poll: 1500
},
public: '192.168.83.181' // vagrant machine address
}
}
}
Below how project structure and terminal with executed vue-cli-service build --watch --mode development
looks
node --version
v8.12.0
vue --version
3.1.3
Tried on Ubuntu 16.04 and 18.04 versions.
vue.js vuejs2 vagrant virtual-machine vue-cli-3
add a comment |
I cloned project from github and deployment on VM.
All works fine except watching if any file in project updating.
VagrantFile have string to syn folder
config.vm.synced_folder './', '/app', owner: 'vagrant', group: 'vagrant'
Tried to add vue.config.js with
module.exports = {
configureWebpack: {
devServer: {
watchOptions: {
ignored: ['node_modules'],
aggregateTimeout: 300,
poll: 1500
},
public: '192.168.83.181' // vagrant machine address
}
}
}
Below how project structure and terminal with executed vue-cli-service build --watch --mode development
looks
node --version
v8.12.0
vue --version
3.1.3
Tried on Ubuntu 16.04 and 18.04 versions.
vue.js vuejs2 vagrant virtual-machine vue-cli-3
Have you installedinotify-tools
? You need that package installed on Ubuntu to watch file changes. Just runsudo apt install inotify-tools
in Ubuntu.
– Simon Hyll
Nov 21 '18 at 17:23
Not helped. Thx.
– maxxdev
Nov 22 '18 at 5:29
add a comment |
I cloned project from github and deployment on VM.
All works fine except watching if any file in project updating.
VagrantFile have string to syn folder
config.vm.synced_folder './', '/app', owner: 'vagrant', group: 'vagrant'
Tried to add vue.config.js with
module.exports = {
configureWebpack: {
devServer: {
watchOptions: {
ignored: ['node_modules'],
aggregateTimeout: 300,
poll: 1500
},
public: '192.168.83.181' // vagrant machine address
}
}
}
Below how project structure and terminal with executed vue-cli-service build --watch --mode development
looks
node --version
v8.12.0
vue --version
3.1.3
Tried on Ubuntu 16.04 and 18.04 versions.
vue.js vuejs2 vagrant virtual-machine vue-cli-3
I cloned project from github and deployment on VM.
All works fine except watching if any file in project updating.
VagrantFile have string to syn folder
config.vm.synced_folder './', '/app', owner: 'vagrant', group: 'vagrant'
Tried to add vue.config.js with
module.exports = {
configureWebpack: {
devServer: {
watchOptions: {
ignored: ['node_modules'],
aggregateTimeout: 300,
poll: 1500
},
public: '192.168.83.181' // vagrant machine address
}
}
}
Below how project structure and terminal with executed vue-cli-service build --watch --mode development
looks
node --version
v8.12.0
vue --version
3.1.3
Tried on Ubuntu 16.04 and 18.04 versions.
vue.js vuejs2 vagrant virtual-machine vue-cli-3
vue.js vuejs2 vagrant virtual-machine vue-cli-3
edited Nov 22 '18 at 8:02
maxxdev
asked Nov 21 '18 at 13:58
maxxdevmaxxdev
96111
96111
Have you installedinotify-tools
? You need that package installed on Ubuntu to watch file changes. Just runsudo apt install inotify-tools
in Ubuntu.
– Simon Hyll
Nov 21 '18 at 17:23
Not helped. Thx.
– maxxdev
Nov 22 '18 at 5:29
add a comment |
Have you installedinotify-tools
? You need that package installed on Ubuntu to watch file changes. Just runsudo apt install inotify-tools
in Ubuntu.
– Simon Hyll
Nov 21 '18 at 17:23
Not helped. Thx.
– maxxdev
Nov 22 '18 at 5:29
Have you installed
inotify-tools
? You need that package installed on Ubuntu to watch file changes. Just run sudo apt install inotify-tools
in Ubuntu.– Simon Hyll
Nov 21 '18 at 17:23
Have you installed
inotify-tools
? You need that package installed on Ubuntu to watch file changes. Just run sudo apt install inotify-tools
in Ubuntu.– Simon Hyll
Nov 21 '18 at 17:23
Not helped. Thx.
– maxxdev
Nov 22 '18 at 5:29
Not helped. Thx.
– maxxdev
Nov 22 '18 at 5:29
add a comment |
1 Answer
1
active
oldest
votes
I have the same issue, but I think the problem is not relative to vue-cli. Because if you change your js code in vm with vi. Then vue-cli can watch this change and pre-compile.But with change from win 10. nothing to happen, despite of changing code is reflected on share folder
So you don't actually have an answer / a solution for it?
– Tiw
Jan 28 at 10:24
The temporary solution is re-run vue-cli build command everytime you want see changes code
– Jack N
Feb 12 at 1:02
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53413702%2fwin10-virtualbox-ubuntu-vue-cli-3-watching-not-working%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I have the same issue, but I think the problem is not relative to vue-cli. Because if you change your js code in vm with vi. Then vue-cli can watch this change and pre-compile.But with change from win 10. nothing to happen, despite of changing code is reflected on share folder
So you don't actually have an answer / a solution for it?
– Tiw
Jan 28 at 10:24
The temporary solution is re-run vue-cli build command everytime you want see changes code
– Jack N
Feb 12 at 1:02
add a comment |
I have the same issue, but I think the problem is not relative to vue-cli. Because if you change your js code in vm with vi. Then vue-cli can watch this change and pre-compile.But with change from win 10. nothing to happen, despite of changing code is reflected on share folder
So you don't actually have an answer / a solution for it?
– Tiw
Jan 28 at 10:24
The temporary solution is re-run vue-cli build command everytime you want see changes code
– Jack N
Feb 12 at 1:02
add a comment |
I have the same issue, but I think the problem is not relative to vue-cli. Because if you change your js code in vm with vi. Then vue-cli can watch this change and pre-compile.But with change from win 10. nothing to happen, despite of changing code is reflected on share folder
I have the same issue, but I think the problem is not relative to vue-cli. Because if you change your js code in vm with vi. Then vue-cli can watch this change and pre-compile.But with change from win 10. nothing to happen, despite of changing code is reflected on share folder
answered Jan 28 at 10:03
Jack NJack N
212
212
So you don't actually have an answer / a solution for it?
– Tiw
Jan 28 at 10:24
The temporary solution is re-run vue-cli build command everytime you want see changes code
– Jack N
Feb 12 at 1:02
add a comment |
So you don't actually have an answer / a solution for it?
– Tiw
Jan 28 at 10:24
The temporary solution is re-run vue-cli build command everytime you want see changes code
– Jack N
Feb 12 at 1:02
So you don't actually have an answer / a solution for it?
– Tiw
Jan 28 at 10:24
So you don't actually have an answer / a solution for it?
– Tiw
Jan 28 at 10:24
The temporary solution is re-run vue-cli build command everytime you want see changes code
– Jack N
Feb 12 at 1:02
The temporary solution is re-run vue-cli build command everytime you want see changes code
– Jack N
Feb 12 at 1:02
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53413702%2fwin10-virtualbox-ubuntu-vue-cli-3-watching-not-working%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Have you installed
inotify-tools
? You need that package installed on Ubuntu to watch file changes. Just runsudo apt install inotify-tools
in Ubuntu.– Simon Hyll
Nov 21 '18 at 17:23
Not helped. Thx.
– maxxdev
Nov 22 '18 at 5:29