laravel-vue-cli-3 icon indicating copy to clipboard operation
laravel-vue-cli-3 copied to clipboard

Example project using Vue CLI 3 with Laravel

Results 14 laravel-vue-cli-3 issues
Sort by recently updated
recently updated
newest added

during development we need to use npm run serve . how can use this ? i use laragon as virtual host

Hi, this is the response when running npm run build npm run build > [email protected] build C:\x\htdocs\vueclitest\frontend > rm -rf ../public/{js,css,img} && vue-cli-service build --no-clean 'rm' is not recognized as...

Hello, I tested the command `rm -rf tmp/{js,css}` on my Ubuntu system but it didn't work. Instead, I had to enter `rm -rf tmp/*.{js,css}` for it to work. I think...

Hi! Would you suggest building on the server in a deploy script or build locally and gitignore the entire frontend? Thanks!

I'm trying to use `"watch": "vue-cli-service build --no-clean --watch",` in my package.json and it seems to somewhat work, but it rebuilds everytime I refresh my application.

- The `rm` command accepts multiple arguments, and most terminal emulators don't support multiple matching between curly brackets. - The `index.blade.php` file must be regenerated each time the app builds,...

such as one admin panel and on mobile site

While this might slightly be out of scope, I wanted to post as others might have had this problem. When using the PWA plugin, the resulting precache manifest has an...

This solves the problem with API 404 response. If you put the following code in `routes/api.php` it does not work: ```php Route::fallback(function() { return response()->json(['message' => 'Not Found!'], 404); });...