0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AWS Cloud9 Laravel6 にLaravel Mixをインストール

Last updated at Posted at 2019-12-01

LaravelでJavaScriptを使えるようにLaravel Mixをインストールします。

Laravel Mixをインストールするために必要なNode.jsとNPMがすでにインストールされていることを確認してください。

ターミナル
$ node -v
v10.16.3
$ npm -v
6.13.1
ターミナル
mkdir laravel-mix
$ cd laravel-mix/
$ npm install --save-dev laravel-mix browser-sync-webpack-plugin

Laravel MixがインストールされるとLaravelプロジェクト(ディレクトリ)内に
"node_module"というファイルが生成されているはずです。

image.png

node_moduleのディレクトリの中に"cross-env"という名前のディレクトリがあるので、それを探してください。
(node_module内はたくさんのディレクトリが生成されているので、結構スクロールする必要があります)
image.png

cross-env/src/bin/cross-env.js

があるので、そこへのパスをpackage.jsonで書き換えます。

image.png

``
パスの編集方法についてはこちら

以上です。

参考サイト
Laravel Mixを使って簡単にフロントエンド開発環境を構築する方法

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?