Skip to content

Commit 330d49c

Browse files
docs-update
1 parent f0650c2 commit 330d49c

File tree

1 file changed

+7
-0
lines changed
  • public/documentation/getting-started/build-tools

1 file changed

+7
-0
lines changed

public/documentation/getting-started/build-tools/index.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,13 @@ <h1 class="bd-title" id="content">Build tools </h1>
470470

471471

472472

473+
<h2>Compiling SCSS files with Laravel Mix</h2>
474+
<p>If you want to make changes to the scss files located in <code>resources/scss/</code> you need to have <code>Laravel Mix</code> installed and then add the following line of code to the <code>webpack.mix.js</code> file in the "scripts" section. </p>
475+
<div class="highlight"><pre ><code class="language-bash" data-lang="bash">"scss": "node-sass resources/scss -o css"</code></pre></div>
476+
<p>You can then run the following two commands in your project terminal in order to compile all of the scss files into one css file which you can then use to apply the styling changes to your project.</p>
477+
<div class="highlight"><pre ><code class="language-bash" data-lang="bash">npm install node-sass</code></pre></div>
478+
<div class="highlight mt-5"><pre ><code class="language-bash" data-lang="bash">npm run scss</code></pre></div>
479+
<h2 id="starting-a-local-server">Starting a local server</h2>
473480
<h2 id="starting-a-local-server">Starting a local server</h2>
474481
<p>Developing with Volt is very easy. All you have to do to run a local server is writing the following command in the folder where <code>gulpfile.js</code> is located:</p>
475482
<div class="highlight"><pre ><code class="language-bash" data-lang="bash">gulp</code></pre></div>

0 commit comments

Comments
 (0)