Laravel預設仍是使用npm,若不使用npm的情況下,會造成在跑 `yarn run dev` 的時候,中間有環節會呼叫npm時會出錯。 另外在使用 `npm run dev` 時發現會覆蓋掉有被git算上的前端部屬用的檔案,故修改.gitignore將這些檔案脫離。
16 lines
178 B
Plaintext
16 lines
178 B
Plaintext
/node_modules
|
|
/public/hot
|
|
/public/storage
|
|
/public/js
|
|
/public/css
|
|
/storage/*.key
|
|
/vendor
|
|
/.idea
|
|
/.vscode
|
|
/.vagrant
|
|
Homestead.json
|
|
Homestead.yaml
|
|
npm-debug.log
|
|
yarn-error.log
|
|
.env
|